Searched refs:evp_md (Results 1 – 6 of 6) sorted by relevance
/openssl-master/providers/implementations/kdfs/ |
A D | hkdf.c | 48 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, 53 static int HKDF_Extract(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, 57 static int HKDF_Expand(const EVP_MD *evp_md, 353 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, in HKDF() argument 363 sz = EVP_MD_get_size(evp_md); in HKDF() 369 if (!HKDF_Extract(libctx, evp_md, in HKDF() 404 static int HKDF_Extract(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, in HKDF_Extract() argument 409 int sz = EVP_MD_get_size(evp_md); in HKDF_Extract() 463 static int HKDF_Expand(const EVP_MD *evp_md, in HKDF_Expand() argument 474 sz = EVP_MD_get_size(evp_md); in HKDF_Expand() [all …]
|
A D | sshkdf.c | 35 static int SSHKDF(const EVP_MD *evp_md, 225 static int SSHKDF(const EVP_MD *evp_md, in SSHKDF() argument 241 if (!EVP_DigestInit_ex(md, evp_md, NULL)) in SSHKDF() 269 if (!EVP_DigestInit_ex(md, evp_md, NULL)) in SSHKDF()
|
/openssl-master/doc/man3/ |
A D | HMAC.pod | 23 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, 61 I<data> using the hash function I<evp_md> and the key I<key> which is 70 I<evp_md> is a message digest such as EVP_sha1(), EVP_ripemd160() etc. 93 function I<evp_md> and key I<key>. If both are NULL, or if I<key> is NULL 94 and I<evp_md> is the same as the previous call, then the 99 If HMAC_Init_ex() is called with I<key> NULL and I<evp_md> is not the 104 function I<evp_md> and the key I<key> which is I<key_len> bytes
|
/openssl-master/crypto/hmac/ |
A D | hmac.c | 221 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, in HMAC() argument 226 int size = EVP_MD_get_size(evp_md); in HMAC() 231 ret = EVP_Q_mac(NULL, "HMAC", NULL, EVP_MD_get0_name(evp_md), NULL, in HMAC()
|
/openssl-master/include/openssl/ |
A D | hmac.h | 54 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
|
/openssl-master/crypto/pkcs7/ |
A D | pk7_doit.c | 397 EVP_MD *evp_md = NULL; in PKCS7_dataDecode() local 512 evp_md = EVP_MD_fetch(libctx, name, propq); in PKCS7_dataDecode() 513 if (evp_md != NULL) in PKCS7_dataDecode() 514 md = evp_md; in PKCS7_dataDecode() 526 EVP_MD_free(evp_md); in PKCS7_dataDecode()
|
Completed in 9 milliseconds