Home
last modified time | relevance | path

Searched refs:EVP_MAC_init (Results 1 – 25 of 36) sorted by relevance

12

/third_party/openssl/doc/life-cycles/
Dmac.dot12 newed -> initialised [label="EVP_MAC_init"];
23 updated -> initialised [label="EVP_MAC_init", style=dashed,
25 finaled -> initialised [label="EVP_MAC_init", style=dashed,
/third_party/openssl/doc/man7/
DEVP_MAC-KMAC.pod43 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
67 The "custom" parameter must be set as part of or before the EVP_MAC_init() call.
69 The "key" parameter is set as part of the EVP_MAC_init() call, but can be
98 * Setup parameters required before calling EVP_MAC_init()
112 if (!EVP_MAC_init(ctx))
Dlife_cycle-mac.pod60 | EVP_MAC_init
66 | | EVP_MAC_update | EVP_MAC_init
68 EVP_MAC_init | +-------------------+ |
98 EVP_MAC_init initialised initialised initialised initialised
129 <tr><th style="border:1px solid" align="left">EVP_MAC_init</th>
DEVP_SIGNATURE-HMAC.pod13 creating MACs. Instead you should use the newer L<EVP_MAC_init(3)> functions.
28 L<EVP_MAC_init(3)>,
DEVP_MAC-Siphash.pod38 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_MAC-Poly1305.pod34 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_MAC-CMAC.pod37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_MAC-GMAC.pod37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_MAC-HMAC.pod37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_MAC-BLAKE2.pod44 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
DEVP_PKEY-HMAC.pod16 operations is via the EVP_MAC APIs. See L<EVP_MAC_init(3)>.
/third_party/openssl/doc/man3/
DEVP_MAC.pod11 EVP_MAC_init, EVP_MAC_update, EVP_MAC_final, EVP_MAC_finalXOF,
50 int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen,
141 EVP_MAC_init() sets up the underlying context I<ctx> with information given
149 EVP_MAC_init() should be called before EVP_MAC_update() and EVP_MAC_final().
335 EVP_MAC_init(), EVP_MAC_update() and EVP_MAC_final() for a full
378 EVP_MAC_init(), EVP_MAC_update(), EVP_MAC_final(), and EVP_MAC_finalXOF()
382 set. If it isn't set, a call to EVP_MAC_init() will set it.
385 If it isn't set, a call to EVP_MAC_init() will set it.
428 || !EVP_MAC_init(ctx, (const unsigned char *)key, strlen(key),
/third_party/openssl/providers/implementations/rands/
Ddrbg_hmac.c64 if (!EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in do_hmac()
75 return EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in do_hmac()
216 if (!EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in drbg_hmac_generate()
/third_party/openssl/crypto/evp/
Dmac_lib.c118 int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen, in EVP_MAC_init() function
284 && EVP_MAC_init(ctx, key, keylen, params) in EVP_Q_mac()
/third_party/openssl/demos/mac/
Dsiphash.c90 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
Dgmac.c106 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
Dcmac-aes256.c103 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
Dhmac-sha512.c114 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
Dpoly1305.c168 if (!EVP_MAC_init(mctx, composite_key, sizeof(composite_key), NULL)) { in main()
/third_party/openssl/apps/
Dmac.c181 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
/third_party/openssl/providers/implementations/signature/
Dmac_legacy_sig.c135 if (!EVP_MAC_init(pmacctx->macctx, pmacctx->key->priv_key, in mac_digest_sign_init()
/third_party/openssl/providers/fips/
Dself_test.c205 if (!EVP_MAC_init(ctx, fixed_key, sizeof(fixed_key), params)) in verify_integrity()
/third_party/openssl/providers/implementations/kdfs/
Dtls1_prf.c298 if (!EVP_MAC_init(ctx_init, sec, sec_len, NULL)) in tls1_prf_P_hash()
Dkbkdf.c338 && !EVP_MAC_init(ctx->ctx_init, ctx->ki, ctx->ki_len, NULL)) in kbkdf_set_ctx_params()
/third_party/openssl/test/
Dbad_dtls_test.c317 if (!EVP_MAC_init(ctx, mac_key, 20, params) in send_record()

12