/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_siv_hw.c | 35 ctx->cbc = EVP_CIPHER_fetch(libctx, "AES-128-CBC", propq); in aes_siv_initkey() 36 ctx->ctr = EVP_CIPHER_fetch(libctx, "AES-128-CTR", propq); in aes_siv_initkey() 39 ctx->cbc = EVP_CIPHER_fetch(libctx, "AES-192-CBC", propq); in aes_siv_initkey() 40 ctx->ctr = EVP_CIPHER_fetch(libctx, "AES-192-CTR", propq); in aes_siv_initkey() 43 ctx->cbc = EVP_CIPHER_fetch(libctx, "AES-256-CBC", propq); in aes_siv_initkey() 44 ctx->ctr = EVP_CIPHER_fetch(libctx, "AES-256-CTR", propq); in aes_siv_initkey()
|
H A D | cipher_aes_gcm_siv_hw.c | 41 ecb = EVP_CIPHER_fetch(ctx->libctx, "AES-128-ECB", NULL); in aes_gcm_siv_initkey() 44 ecb = EVP_CIPHER_fetch(ctx->libctx, "AES-192-ECB", NULL); in aes_gcm_siv_initkey() 47 ecb = EVP_CIPHER_fetch(ctx->libctx, "AES-256-ECB", NULL); in aes_gcm_siv_initkey()
|
/openssl/demos/cipher/ |
H A D | aeskeywrap.c | 75 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-WRAP", propq)) == NULL) in aes_wrap_encrypt() 132 if ((cipher = EVP_CIPHER_fetch(libctx, "aes-256-wrap", propq)) == NULL) in aes_wrap_decrypt()
|
H A D | ariacbc.c | 72 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) in aria_cbc_encrypt() 127 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) in aria_cbc_decrypt()
|
H A D | aesgcm.c | 92 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-GCM", propq)) == NULL) in aes_gcm_encrypt() 167 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-GCM", propq)) == NULL) in aes_gcm_decrypt()
|
H A D | aesccm.c | 94 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-192-CCM", propq)) == NULL) in aes_ccm_encrypt() 178 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-192-CCM", propq)) == NULL) in aes_ccm_decrypt()
|
/openssl/test/ |
H A D | evp_extra_test.c | 1663 else if (!TEST_ptr(type = EVP_CIPHER_fetch(testctx, "AES-256-CBC", in test_EVP_Enveloped() 3927 type = EVP_CIPHER_fetch(testctx, "des-cbc", testpropq); in test_evp_iv_des() 3932 type = EVP_CIPHER_fetch(testctx, "des-ofb", testpropq); in test_evp_iv_des() 3937 type = EVP_CIPHER_fetch(testctx, "des-cfb", testpropq); in test_evp_iv_des() 3942 type = EVP_CIPHER_fetch(testctx, "des-ede3-cbc", testpropq); in test_evp_iv_des() 3947 type = EVP_CIPHER_fetch(testctx, "des-ede3-ofb", testpropq); in test_evp_iv_des() 3952 type = EVP_CIPHER_fetch(testctx, "des-ede3-cfb", testpropq); in test_evp_iv_des() 4158 EVP_CIPHER *aes128 = EVP_CIPHER_fetch(ctx, "AES-128-CBC", NULL); in md_names() 5717 if ((cipher = EVP_CIPHER_fetch(testctx, "AES-256-GCM", "")) == NULL) in aes_gcm_decrypt() 5804 || !TEST_ptr(cipher = EVP_CIPHER_fetch(testctx, "RC4", ""))) in rc4_encrypt() [all …]
|
H A D | evp_libctx_test.c | 383 if (!TEST_ptr(cipher = EVP_CIPHER_fetch(libctx, name, NULL))) in test_cipher_reinit() 477 if (!TEST_ptr(cipher = EVP_CIPHER_fetch(libctx, name, NULL))) in test_cipher_reinit_partialupdate() 642 ret = TEST_ptr(aes_cipher = EVP_CIPHER_fetch(libctx, "AES-256-CBC", NULL)) in test_cipher_tdes_randkey() 644 && TEST_ptr(tdes_cipher = EVP_CIPHER_fetch(libctx, "DES-EDE3-CBC", NULL)) in test_cipher_tdes_randkey()
|
H A D | namemap_internal_test.c | 135 EVP_CIPHER *fetched = EVP_CIPHER_fetch(NULL, "AES-256-CCM", NULL); in test_cipher_is_a()
|
/openssl/demos/mac/ |
H A D | poly1305.c | 118 aes = EVP_CIPHER_fetch(library_context, "AES-128-ECB", propq); in main()
|
/openssl/doc/man3/ |
H A D | EVP_bf_cbc.pod | 44 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-BLOWFISH(7)> instead.
|
H A D | EVP_cast5_cbc.pod | 44 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-CAST(7)> instead.
|
H A D | EVP_idea_cbc.pod | 42 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-IDEA(7)> instead.
|
H A D | EVP_desx_cbc.pod | 34 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-DES(7)> instead.
|
H A D | EVP_seed_cbc.pod | 44 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-SEED(7)> instead.
|
H A D | EVP_sm4_cbc.pod | 48 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-SM4(7)> instead.
|
H A D | OSSL_ALGORITHM.pod | 40 the appropriate fetching functionality (such as L<EVP_CIPHER_fetch(3)>, 83 functionality (such as L<EVP_CIPHER_fetch(3)>, L<EVP_MD_fetch(3)>, etc) for
|
H A D | EVP_camellia_128_ecb.pod | 82 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-CAMELLIA(7)> instead.
|
H A D | EVP_rc4.pod | 50 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-RC4(7)> instead.
|
H A D | EVP_chacha20.pod | 47 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-CHACHA(7)> instead.
|
H A D | EVP_rc2_cbc.pod | 58 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-RC2(7)> instead.
|
H A D | EVP_des_cbc.pod | 92 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-DES(7)> instead.
|
H A D | EVP_rc5_32_12_16_cbc.pod | 63 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-RC5(7)> instead.
|
H A D | EVP_aria_128_gcm.pod | 99 L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-ARIA(7)> instead.
|
/openssl/doc/man7/ |
H A D | OSSL_PROVIDER-legacy.pod | 28 L<EVP_MD_fetch(3)> or L<EVP_CIPHER_fetch(3)>, as well as with other
|