In EVP_BytesToKey, replace explicit "8" by "PKCS5_SALT_LEN".
This commit is contained in:
parent
4ee1eb7bd4
commit
5d07c20d8e
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ int EVP_BytesToKey(const EVP_CIPHER *type, EVP_MD *md, unsigned char *salt,
|
|||
EVP_DigestUpdate(&c,&(md_buf[0]),mds);
|
||||
EVP_DigestUpdate(&c,data,datal);
|
||||
if (salt != NULL)
|
||||
EVP_DigestUpdate(&c,salt,8);
|
||||
i EVP_DigestUpdate(&c,salt,PKCS5_SALT_LEN);
|
||||
EVP_DigestFinal(&c,&(md_buf[0]),&mds);
|
||||
|
||||
for (i=1; i<(unsigned int)count; i++)
|
||||
|
|
Loading…
Reference in a new issue