/openssl/test/ |
H A D | hmactest.c | 115 || !TEST_false(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL)) in test_hmac_bad() 117 || !TEST_false(HMAC_Init_ex(ctx, NULL, 0, EVP_sha1(), NULL)) in test_hmac_bad() 141 || !TEST_false(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL)) in test_hmac_run() 143 || !TEST_false(HMAC_Init_ex(ctx, test[4].key, -1, EVP_sha1(), NULL))) in test_hmac_run() 146 if (!TEST_true(HMAC_Init_ex(ctx, test[4].key, test[4].key_len, EVP_sha1(), NULL)) in test_hmac_run() 155 if (!TEST_false(HMAC_Init_ex(ctx, NULL, 0, EVP_sha256(), NULL))) in test_hmac_run() 168 if (!TEST_true(HMAC_Init_ex(ctx, test[6].key, test[6].key_len, NULL, NULL)) in test_hmac_run() 177 if (!TEST_true(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL)) in test_hmac_run() 189 if (!TEST_true(HMAC_Init_ex(ctx, NULL, 0, EVP_sha256(), NULL)) in test_hmac_run() 231 if (!TEST_true(HMAC_Init_ex(ctx, test[7].key, test[7].key_len, EVP_sha1(), NULL)) in test_hmac_copy() [all …]
|
H A D | sslapitest.c | 8293 || !HMAC_Init_ex(hctx, tick_hmac_key, sizeof(tick_hmac_key), sha256, in tick_key_cb()
|
/openssl/doc/man3/ |
H A D | HMAC.pod | 10 HMAC_Init_ex, 34 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int key_len, 95 HMAC_Init_ex() initializes or reuses a B<HMAC_CTX> structure to use the hash 102 If HMAC_Init_ex() is called with I<key> NULL and I<evp_md> is not the 134 HMAC_CTX_reset(), HMAC_Init_ex(), HMAC_Update(), HMAC_Final() and 161 HMAC_Init_ex(), HMAC_Update() and HMAC_Final() did not return values in
|
H A D | SSL_CTX_set_tlsext_ticket_key_cb.pod | 125 The I<hctx> key material can be set using L<HMAC_Init_ex(3)>.
|
/openssl/include/openssl/ |
H A D | hmac.h | 43 OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
|
/openssl/crypto/hmac/ |
H A D | hmac.c | 25 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, in HMAC_Init_ex() function 112 return HMAC_Init_ex(ctx, key, len, md, NULL); in HMAC_Init()
|
/openssl/providers/implementations/macs/ |
H A D | hmac_prov.c | 193 return HMAC_Init_ex(macctx->ctx, key, keylen, digest, in hmac_setkey() 210 return HMAC_Init_ex(macctx->ctx, NULL, 0, NULL, NULL); in hmac_init()
|
/openssl/crypto/rsa/ |
H A D | rsa_pk1.c | 322 if (HMAC_Init_ex(hmac, kdk, SHA256_DIGEST_LENGTH, md, NULL) <= 0) { in ossl_rsa_prf() 328 if (HMAC_Init_ex(hmac, NULL, 0, NULL, NULL) <= 0) { in ossl_rsa_prf()
|
H A D | rsa_ossl.c | 489 if (HMAC_Init_ex(hmac, d_hash, sizeof(d_hash), md, NULL) <= 0) { in derive_kdk()
|
/openssl/ssl/ |
H A D | tls_depr.c | 121 return HMAC_Init_ex(ctx->old_ctx, key, len, EVP_get_digestbyname(md), NULL); in ssl_hmac_old_init()
|
/openssl/providers/implementations/kdfs/ |
H A D | hkdf.c | 592 if (!HMAC_Init_ex(hmac, prk, prk_len, evp_md, NULL)) in HKDF_Expand() 601 if (!HMAC_Init_ex(hmac, NULL, 0, NULL, NULL)) in HKDF_Expand()
|
H A D | pbkdf2.c | 423 if (!HMAC_Init_ex(hctx_tpl, pass, passlen, digest, NULL)) in pbkdf2_derive()
|
/openssl/crypto/engine/ |
H A D | eng_openssl.c | 576 if (!HMAC_Init_ex(hctx->ctx, key->data, key->length, hctx->md, NULL)) in ossl_hmac_ctrl()
|
/openssl/crypto/pkcs12/ |
H A D | p12_mutl.c | 273 || !HMAC_Init_ex(hmac, key, keylen, md, NULL) in pkcs12_gen_mac()
|
/openssl/doc/man7/ |
H A D | ossl-guide-migration.pod | 1865 HMAC_Init_ex(), HMAC_Update(), HMAC_Final(), HMAC_size()
|
/openssl/util/ |
H A D | libcrypto.num | 1293 HMAC_Init_ex 1323 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0
|