mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
asn1: fix indentation
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14881)
This commit is contained in:
parent
c4685815bf
commit
2ec6491669
@ -75,8 +75,8 @@ int ossl_asn1_item_digest_ex(const ASN1_ITEM *it, const EVP_MD *md, void *asn,
|
||||
#endif
|
||||
fetched_md = EVP_MD_fetch(libctx, EVP_MD_name(md), propq);
|
||||
}
|
||||
if (fetched_md == NULL)
|
||||
goto err;
|
||||
if (fetched_md == NULL)
|
||||
goto err;
|
||||
|
||||
ret = EVP_Digest(str, i, data, len, fetched_md, NULL);
|
||||
err:
|
||||
|
@ -92,8 +92,14 @@ int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen,
|
||||
const unsigned char *salt, int saltlen, int iter,
|
||||
int keylen, unsigned char *out)
|
||||
{
|
||||
return PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, EVP_sha1(),
|
||||
keylen, out);
|
||||
EVP_MD *digest;
|
||||
int r = 0;
|
||||
|
||||
if ((digest = EVP_MD_fetch(NULL, SN_sha1, NULL)) != NULL)
|
||||
r = ossl_pkcs5_pbkdf2_hmac_ex(pass, passlen, salt, saltlen, iter,
|
||||
digest, keylen, out, NULL, NULL);
|
||||
EVP_MD_free(digest);
|
||||
return r;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user