Searched refs:EVP_CIPHER_is_a (Results 1 – 17 of 17) sorted by relevance
/openssl/ssl/record/methods/ |
H A D | ktls_meth.c | 46 if (EVP_CIPHER_is_a(c, "AES-128-GCM") in ktls_int_check_supported_cipher() 47 || EVP_CIPHER_is_a(c, "AES-256-GCM") in ktls_int_check_supported_cipher() 54 if (!EVP_CIPHER_is_a(c, "AES-128-CBC") in ktls_int_check_supported_cipher() 55 && !EVP_CIPHER_is_a(c, "AES-256-CBC")) in ktls_int_check_supported_cipher() 82 if (EVP_CIPHER_is_a(c, "AES-128-GCM") in ktls_configure_crypto() 83 || EVP_CIPHER_is_a(c, "AES-256-GCM")) { in ktls_configure_crypto() 88 if (EVP_CIPHER_is_a(c, "CHACHA20-POLY1305")) { in ktls_configure_crypto() 93 if (EVP_CIPHER_is_a(c, "AES-128-CBC") || EVP_CIPHER_is_a(c, "AES-256-CBC")) { in ktls_configure_crypto() 149 if (EVP_CIPHER_is_a(c, "AES-128-CCM")) { in ktls_int_check_supported_cipher() 157 || EVP_CIPHER_is_a(c, "AES-128-GCM") in ktls_int_check_supported_cipher() [all …]
|
H A D | tls13_meth.c | 44 if (EVP_CIPHER_is_a(ciph, "NULL") && mactype == NID_hmac && md != NULL) { in tls13_set_crypto_state()
|
H A D | tls_common.c | 1369 && !EVP_CIPHER_is_a(ciph, "NULL") in tls_int_new_record_layer() 1370 && !EVP_CIPHER_is_a(ciph, "RC4")) { in tls_int_new_record_layer()
|
/openssl/test/ |
H A D | namemap_internal_test.c | 140 if (!TEST_true(EVP_CIPHER_is_a(fetched, "id-aes256-CCM")) in test_cipher_is_a() 141 || !TEST_false(EVP_CIPHER_is_a(fetched, "AES-128-GCM"))) in test_cipher_is_a() 143 if (!TEST_true(EVP_CIPHER_is_a(EVP_aes_256_gcm(), "AES-256-GCM")) in test_cipher_is_a() 144 || !TEST_false(EVP_CIPHER_is_a(EVP_aes_256_gcm(), "AES-128-CCM"))) in test_cipher_is_a()
|
H A D | evp_libctx_test.c | 396 no_null_key = EVP_CIPHER_is_a(cipher, "RC4") in test_cipher_reinit() 397 || EVP_CIPHER_is_a(cipher, "RC4-40") in test_cipher_reinit() 398 || EVP_CIPHER_is_a(cipher, "RC4-HMAC-MD5"); in test_cipher_reinit() 401 diff = EVP_CIPHER_is_a(cipher, "DES3-WRAP"); in test_cipher_reinit()
|
H A D | evp_test.c | 1409 && (EVP_CIPHER_is_a(expected->cipher, "AES-128-CBC-HMAC-SHA1") in cipher_test_enc() 1410 || EVP_CIPHER_is_a(expected->cipher, "AES-256-CBC-HMAC-SHA1"))) { in cipher_test_enc()
|
/openssl/providers/implementations/macs/ |
H A D | cmac_prov.c | 137 if (EVP_CIPHER_is_a(cipher, "DES-EDE3-CBC")) { in tdes_check_param() 274 if (!EVP_CIPHER_is_a(cipher, "AES-256-CBC") in cmac_set_ctx_params() 275 && !EVP_CIPHER_is_a(cipher, "AES-192-CBC") in cmac_set_ctx_params() 276 && !EVP_CIPHER_is_a(cipher, "AES-128-CBC") in cmac_set_ctx_params() 277 && !EVP_CIPHER_is_a(cipher, "DES-EDE3-CBC")) { in cmac_set_ctx_params()
|
/openssl/ssl/quic/ |
H A D | quic_tls.c | 164 if (EVP_CIPHER_is_a(ciph, "AES-128-GCM")) { in quic_new_record_layer() 166 } else if (EVP_CIPHER_is_a(ciph, "AES-256-GCM")) { in quic_new_record_layer() 168 } else if (EVP_CIPHER_is_a(ciph, "CHACHA20-POLY1305")) { in quic_new_record_layer()
|
/openssl/providers/implementations/keymgmt/ |
H A D | mac_legacy_kmgmt.c | 176 ok = ok && EVP_CIPHER_is_a(key1->cipher.cipher, in mac_match()
|
/openssl/ssl/ |
H A D | t1_enc.c | 186 if (EVP_CIPHER_is_a(c, "CHACHA20-POLY1305")) { in tls1_change_cipher_state()
|
H A D | tls13_enc.c | 377 if (EVP_CIPHER_is_a(ciph, "NULL") in derive_secret_key_and_iv()
|
/openssl/crypto/evp/ |
H A D | evp_lib.c | 112 if (EVP_CIPHER_is_a(cipher, SN_id_smime_alg_CMS3DESwrap)) in evp_cipher_param_to_asn1_ex() 680 int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name) in EVP_CIPHER_is_a() function
|
/openssl/providers/implementations/kdfs/ |
H A D | x942kdf.c | 90 if (EVP_CIPHER_is_a(cipher, kek_algs[i].name)) { in find_alg_id()
|
/openssl/apps/ |
H A D | list.c | 131 if (select_name != NULL && !EVP_CIPHER_is_a(c, select_name)) in list_ciphers()
|
/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 37 EVP_CIPHER_is_a, 172 int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name); 561 =item EVP_CIPHER_is_a()
|
/openssl/include/openssl/ |
H A D | evp.h | 591 int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name);
|
/openssl/util/ |
H A D | libcrypto.num | 4712 EVP_CIPHER_is_a 4840 3_0_0 EXIST::FUNCTION:
|
Completed in 86 milliseconds