/freebsd/crypto/openssl/doc/life-cycles/ |
H A 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,
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_MAC-KMAC.pod | 44 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>. 70 The "custom" parameter must be set as part of or before the EVP_MAC_init() call. 72 The "key" parameter is set as part of the EVP_MAC_init() call, but can be 101 * Setup parameters required before calling EVP_MAC_init() 115 if (!EVP_MAC_init(ctx))
|
H A 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)>,
|
H A 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>
|
H A D | EVP_MAC-Siphash.pod | 38 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_MAC-Poly1305.pod | 34 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_MAC-GMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_MAC-CMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_MAC-BLAKE2.pod | 45 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_MAC-HMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
H A D | EVP_PKEY-HMAC.pod | 16 operations is via the EVP_MAC APIs. See L<EVP_MAC_init(3)>.
|
/freebsd/crypto/openssl/doc/man3/ |
H A 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 re-initalization (i.e. calling EVP_MAC_init() on an EVP_MAC after EVP_MAC_final() 152 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 350 underlying CIPHER context, and so calling EVP_MAC_init() on an EVP_MAC object 353 B<OSSL_MAC_PARAM_IV> parameter must be passed with each call to EVP_MAC_init(). 385 EVP_MAC_init(), EVP_MAC_update(), EVP_MAC_final(), and EVP_MAC_finalXOF() 389 set. If it isn't set, a call to EVP_MAC_init() will set it. [all …]
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A 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()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A 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()
|
/freebsd/crypto/openssl/demos/mac/ |
H A D | gmac.c | 106 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
H A D | siphash.c | 90 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
H A D | cmac-aes256.c | 103 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
H A D | hmac-sha512.c | 114 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
H A D | poly1305.c | 168 if (!EVP_MAC_init(mctx, composite_key, sizeof(composite_key), NULL)) { in main()
|
/freebsd/crypto/openssl/apps/ |
H A D | mac.c | 181 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
|
/freebsd/crypto/openssl/providers/implementations/signature/ |
H A D | mac_legacy_sig.c | 135 if (!EVP_MAC_init(pmacctx->macctx, pmacctx->key->priv_key, in mac_digest_sign_init()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_hmac.c | 248 EVP_MAC_init(*ctx, key, key_len, params); in __hmac_sha1_init()
|
/freebsd/crypto/openssl/providers/fips/ |
H A D | self_test.c | 203 if (!EVP_MAC_init(ctx, fixed_key, sizeof(fixed_key), params)) in verify_integrity()
|
/freebsd/crypto/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 298 if (!EVP_MAC_init(ctx_init, sec, sec_len, NULL)) in tls1_prf_P_hash()
|
H A D | kbkdf.c | 338 && !EVP_MAC_init(ctx->ctx_init, ctx->ki, ctx->ki_len, NULL)) in kbkdf_set_ctx_params()
|