/third_party/openssl/doc/life-cycles/ |
D | mac.dot | 12 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/ |
D | EVP_MAC-KMAC.pod | 43 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))
|
D | life_cycle-mac.pod | 60 | 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>
|
D | EVP_SIGNATURE-HMAC.pod | 13 creating MACs. Instead you should use the newer L<EVP_MAC_init(3)> functions. 28 L<EVP_MAC_init(3)>,
|
D | EVP_MAC-Siphash.pod | 38 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_MAC-Poly1305.pod | 34 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_MAC-CMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_MAC-GMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_MAC-HMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_MAC-BLAKE2.pod | 44 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
D | EVP_PKEY-HMAC.pod | 16 operations is via the EVP_MAC APIs. See L<EVP_MAC_init(3)>.
|
/third_party/openssl/doc/man3/ |
D | EVP_MAC.pod | 11 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/ |
D | drbg_hmac.c | 64 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/ |
D | mac_lib.c | 118 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/ |
D | siphash.c | 90 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
D | gmac.c | 106 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
D | cmac-aes256.c | 103 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
D | hmac-sha512.c | 114 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
D | poly1305.c | 168 if (!EVP_MAC_init(mctx, composite_key, sizeof(composite_key), NULL)) { in main()
|
/third_party/openssl/apps/ |
D | mac.c | 181 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
|
/third_party/openssl/providers/implementations/signature/ |
D | mac_legacy_sig.c | 135 if (!EVP_MAC_init(pmacctx->macctx, pmacctx->key->priv_key, in mac_digest_sign_init()
|
/third_party/openssl/providers/fips/ |
D | self_test.c | 205 if (!EVP_MAC_init(ctx, fixed_key, sizeof(fixed_key), params)) in verify_integrity()
|
/third_party/openssl/providers/implementations/kdfs/ |
D | tls1_prf.c | 298 if (!EVP_MAC_init(ctx_init, sec, sec_len, NULL)) in tls1_prf_P_hash()
|
D | kbkdf.c | 338 && !EVP_MAC_init(ctx->ctx_init, ctx->ki, ctx->ki_len, NULL)) in kbkdf_set_ctx_params()
|
/third_party/openssl/test/ |
D | bad_dtls_test.c | 317 if (!EVP_MAC_init(ctx, mac_key, 20, params) in send_record()
|