| /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 | 43 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>. 84 the EVP_MAC_init() call. 86 The "key" parameter is set as part of the EVP_MAC_init() call, but can be 115 * Setup parameters required before calling EVP_MAC_init() 129 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-CMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>. 53 If required this parameter should be set before EVP_MAC_init()
|
| 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-BLAKE2.pod | 45 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)>.
|
| H A D | EVP_MAC-HMAC.pod | 37 Setting this parameter is identical to passing a I<key> to L<EVP_MAC_init(3)>.
|
| /freebsd/crypto/openssl/ssl/quic/ |
| H A D | quic_srt_gen.c | 43 if (!EVP_MAC_init(srt_gen->mac_ctx, key, key_len, params)) in ossl_quic_srt_gen_new() 70 if (!EVP_MAC_init(srt_gen->mac_ctx, NULL, 0, NULL)) in ossl_quic_srt_gen_calculate_token()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_MAC.pod | 11 EVP_MAC_init, EVP_MAC_init_SKEY, 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, 142 EVP_MAC_init() sets up the underlying context I<ctx> with information given 150 re-initalization (i.e. calling EVP_MAC_init() on an EVP_MAC after EVP_MAC_final() 153 EVP_MAC_init() should be called before EVP_MAC_update() and EVP_MAC_final(). 155 EVP_MAC_init_SKEY() is similar to EVP_MAC_init() but it accepts an opaque 341 EVP_MAC_init(), EVP_MAC_update() and EVP_MAC_final() for a full 356 underlying CIPHER context, and so calling EVP_MAC_init() on an EVP_MAC object 359 B<OSSL_MAC_PARAM_IV> parameter must be passed with each call to EVP_MAC_init(). 391 EVP_MAC_init(), EVP_MAC_init_SKEY(), EVP_MAC_update(), EVP_MAC_final(), and [all …]
|
| H A D | CMAC_CTX.pod | 43 =item L<EVP_MAC_init(3)> to initialize the MAC context. 102 see L<EVP_MAC_CTX_new(3)>, L<EVP_MAC_CTX_free(3)>, L<EVP_MAC_init(3)>,
|
| /freebsd/crypto/krb5/src/lib/crypto/openssl/ |
| H A D | cmac.c | 73 ok = EVP_MAC_init(ctx, key->keyblock.contents, key->keyblock.length, in krb5int_cmac_checksum()
|
| H A D | hmac.c | 156 ok = EVP_MAC_init(ctx, keyblock->contents, keyblock->length, params); in krb5int_hmac_keyblock()
|
| /freebsd/crypto/openssl/demos/mac/ |
| H A D | siphash.c | 90 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
| H A D | gmac.c | 106 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
| H A D | cmac-aes256.c | 143 if (!EVP_MAC_init(mctx, key, sizeof(key), params)) { in main()
|
| H A D | hmac-sha512.c | 224 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/providers/fips/ |
| H A D | self_test.c | 223 || !EVP_MAC_init(ctx, hmac_kat_key, sizeof(hmac_kat_key), params) in integrity_self_test() 275 if (!EVP_MAC_init(ctx, fixed_key, sizeof(fixed_key), params)) in verify_integrity()
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | mac_lib.c | 115 int EVP_MAC_init(EVP_MAC_CTX *ctx, const unsigned char *key, size_t keylen, in EVP_MAC_init() function 295 && EVP_MAC_init(ctx, key, keylen, params) in EVP_Q_mac()
|
| /freebsd/crypto/openssl/providers/implementations/rands/ |
| H A D | drbg_hmac.c | 61 if (!EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in do_hmac() 72 return EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in do_hmac() 227 if (!EVP_MAC_init(ctx, hmac->K, hmac->blocklen, NULL) in ossl_drbg_hmac_generate()
|
| /freebsd/crypto/openssl/apps/ |
| H A D | mac.c | 184 if (!EVP_MAC_init(ctx, NULL, 0, NULL)) { in mac_main()
|