Symbol: HMAC_Init_ex
crypto/heimdal/kdc/kx509.c
115
HMAC_Init_ex(ctx, key->keyvalue.data, key->keyvalue.length,
crypto/heimdal/kdc/kx509.c
82
HMAC_Init_ex(ctx,
crypto/heimdal/lib/gssapi/ntlm/crypto.c
156
HMAC_Init_ex(c, signkey, 16, EVP_md5(), NULL);
crypto/heimdal/lib/ntlm/ntlm.c
1186
HMAC_Init_ex(c, key, len, EVP_md5(), NULL);
crypto/heimdal/lib/ntlm/ntlm.c
1394
HMAC_Init_ex(c, key, len, EVP_md5(), NULL);
crypto/heimdal/lib/ntlm/ntlm.c
1850
HMAC_Init_ex(c, sessionkey, 16, EVP_md5(), NULL);
crypto/krb5/src/lib/crypto/openssl/hmac.c
203
ok = HMAC_Init_ex(ctx, keyblock->contents, keyblock->length,
crypto/openssl/crypto/engine/eng_openssl.c
582
if (!HMAC_Init_ex(hctx->ctx, key->data, key->length, hctx->md, NULL))
crypto/openssl/crypto/hmac/hmac.c
112
return HMAC_Init_ex(ctx, key, len, md, NULL);
crypto/openssl/crypto/pkcs12/p12_mutl.c
288
|| !HMAC_Init_ex(hmac, key, keylen, md, NULL)
crypto/openssl/crypto/rsa/rsa_ossl.c
485
if (HMAC_Init_ex(hmac, d_hash, sizeof(d_hash), md, NULL) <= 0) {
crypto/openssl/crypto/rsa/rsa_pk1.c
320
if (HMAC_Init_ex(hmac, kdk, SHA256_DIGEST_LENGTH, md, NULL) <= 0) {
crypto/openssl/crypto/rsa/rsa_pk1.c
326
if (HMAC_Init_ex(hmac, NULL, 0, NULL, NULL) <= 0) {
crypto/openssl/include/openssl/hmac.h
43
OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
crypto/openssl/providers/implementations/kdfs/hkdf.c
590
if (!HMAC_Init_ex(hmac, prk, prk_len, evp_md, NULL))
crypto/openssl/providers/implementations/kdfs/hkdf.c
599
if (!HMAC_Init_ex(hmac, NULL, 0, NULL, NULL))
crypto/openssl/providers/implementations/kdfs/pbkdf2.c
423
if (!HMAC_Init_ex(hctx_tpl, pass, passlen, digest, NULL))
crypto/openssl/providers/implementations/macs/hmac_prov.c
194
return HMAC_Init_ex(macctx->ctx, key, keylen, digest,
crypto/openssl/providers/implementations/macs/hmac_prov.c
211
return HMAC_Init_ex(macctx->ctx, NULL, 0, NULL, NULL);
crypto/openssl/ssl/tls_depr.c
122
return HMAC_Init_ex(ctx->old_ctx, key, len, EVP_get_digestbyname(md), NULL);
crypto/openssl/test/hmactest.c
115
|| !TEST_false(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL))
crypto/openssl/test/hmactest.c
117
|| !TEST_false(HMAC_Init_ex(ctx, NULL, 0, EVP_sha1(), NULL))
crypto/openssl/test/hmactest.c
141
|| !TEST_false(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL))
crypto/openssl/test/hmactest.c
143
|| !TEST_false(HMAC_Init_ex(ctx, test[4].key, -1, EVP_sha1(), NULL)))
crypto/openssl/test/hmactest.c
146
if (!TEST_true(HMAC_Init_ex(ctx, test[4].key, test[4].key_len, EVP_sha1(), NULL))
crypto/openssl/test/hmactest.c
155
if (!TEST_false(HMAC_Init_ex(ctx, NULL, 0, EVP_sha256(), NULL)))
crypto/openssl/test/hmactest.c
158
if (!TEST_true(HMAC_Init_ex(ctx, test[5].key, test[5].key_len, EVP_sha256(), NULL))
crypto/openssl/test/hmactest.c
168
if (!TEST_true(HMAC_Init_ex(ctx, test[6].key, test[6].key_len, NULL, NULL))
crypto/openssl/test/hmactest.c
177
if (!TEST_true(HMAC_Init_ex(ctx, NULL, 0, NULL, NULL))
crypto/openssl/test/hmactest.c
189
if (!TEST_true(HMAC_Init_ex(ctx, NULL, 0, EVP_sha256(), NULL))
crypto/openssl/test/hmactest.c
228
if (!TEST_true(HMAC_Init_ex(ctx, test[5].key, test[5].key_len, EVP_sha256(), NULL))
crypto/openssl/test/hmactest.c
254
if (!TEST_true(HMAC_Init_ex(ctx, test[7].key, test[7].key_len, EVP_sha1(), NULL))
crypto/openssl/test/hmactest.c
409
if (!TEST_true(HMAC_Init_ex(ctx, test_chunks[idx].key,
crypto/openssl/test/sslapitest.c
8561
|| !HMAC_Init_ex(hctx, tick_hmac_key, sizeof(tick_hmac_key), sha256,
lib/libradius/radlib.c
161
HMAC_Init_ex(ctx, srvp->secret, strlen(srvp->secret), EVP_md5(), NULL);
lib/libradius/radlib.c
247
HMAC_Init_ex(hctx, srvp->secret,
lib/libradius/radlib.c
343
HMAC_Init_ex(hctx, srvp->secret,
tests/sys/kern/ktls_test.c
377
if (HMAC_Init_ex(ctx, key, key_len, md, NULL) != 1) {