Home
last modified time | relevance | path

Searched refs:EVP_CIPHER_mode (Results 1 – 18 of 18) sorted by relevance

/third_party/openssl/apps/
Dgenpkey.c123 if (EVP_CIPHER_mode(cipher) == EVP_CIPH_GCM_MODE || in genpkey_main()
124 EVP_CIPHER_mode(cipher) == EVP_CIPH_CCM_MODE || in genpkey_main()
125 EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE || in genpkey_main()
126 EVP_CIPHER_mode(cipher) == EVP_CIPH_OCB_MODE) { in genpkey_main()
Denc.c292 if (cipher && (EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE)) { in enc_main()
637 EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE) in show_ciphers()
Dspeed.c2617 if (EVP_CIPHER_mode(evp_cipher) == EVP_CIPH_CCM_MODE) { in speed_main()
/third_party/openssl/ssl/
Dt1_enc.c222 if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE) in tls1_change_cipher_state()
224 else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) in tls1_change_cipher_state()
276 if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE) { in tls1_change_cipher_state()
284 } else if (EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) { in tls1_change_cipher_state()
Dtls13_enc.c389 if (EVP_CIPHER_mode(ciph) == EVP_CIPH_CCM_MODE) { in derive_secret_key_and_iv()
Dssl_ciph.c2141 EVP_CIPHER_mode(e_ciph) != EVP_CIPH_CBC_MODE) in ssl_cipher_get_overhead()
/third_party/openssl/crypto/evp/
Devp_enc.c315 && EVP_CIPHER_mode(ctx->cipher) != EVP_CIPH_CCM_MODE)) { in evp_EncryptDecryptUpdate()
487 && EVP_CIPHER_mode(ctx->cipher) != EVP_CIPH_CCM_MODE)) { in EVP_DecryptUpdate()
/third_party/openssl/test/
Devp_test.c507 m = EVP_CIPHER_mode(cipher); in cipher_test_init()
786 if (EVP_CIPHER_mode(cdat->cipher) != EVP_CIPH_WRAP_MODE) { in cipher_test_run()
838 || EVP_CIPHER_mode(cdat->cipher) == EVP_CIPH_XTS_MODE in cipher_test_run()
839 || EVP_CIPHER_mode(cdat->cipher) == EVP_CIPH_WRAP_MODE) in cipher_test_run()
/third_party/openssl/ssl/record/
Dssl3_record.c971 && EVP_CIPHER_mode(enc) == EVP_CIPH_CBC_MODE) in tls1_enc()
1135 if (EVP_CIPHER_mode(enc) == EVP_CIPH_GCM_MODE) { in tls1_enc()
1141 } else if (EVP_CIPHER_mode(enc) == EVP_CIPH_CCM_MODE) { in tls1_enc()
/third_party/openssl/doc/man3/
DEVP_EncryptInit.pod33 EVP_CIPHER_mode,
105 unsigned long EVP_CIPHER_mode(const EVP_CIPHER *e);
254 EVP_CIPHER_mode() and EVP_CIPHER_CTX_mode() return the block cipher mode:
/third_party/openssl/include/openssl/
Devp.h471 # define EVP_CIPHER_mode(e) (EVP_CIPHER_flags(e) & EVP_CIPH_MODE) macro
494 # define EVP_CIPHER_CTX_mode(c) EVP_CIPHER_mode(EVP_CIPHER_CTX_cipher(c))
/third_party/openssl/crypto/dh/
Ddh_ameth.c715 if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE) in dh_cms_set_shared_info()
/third_party/openssl/crypto/ec/
Dec_ameth.c768 if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE) in ecdh_cms_set_shared_info()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dtls_openssl.c4221 if (EVP_CIPHER_mode(c) == EVP_CIPH_GCM_MODE || in openssl_get_keyblock_size()
4222 EVP_CIPHER_mode(c) == EVP_CIPH_CCM_MODE) in openssl_get_keyblock_size()
/third_party/node/src/
Dnode_crypto.cc2586 const int mode = EVP_CIPHER_mode(cipher); in IsSupportedAuthenticatedMode()
3602 const int mode = EVP_CIPHER_mode(cipher); in CommonInit()
3659 const int mode = EVP_CIPHER_mode(cipher); in Init()
/third_party/libcoap/src/
Dcoap_openssl.c3125 switch (EVP_CIPHER_mode(e_ciph)) { in coap_dtls_get_overhead()
/third_party/grpc/src/boringssl/
Dboringssl_prefix_symbols.h1465 #define EVP_CIPHER_mode BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, EVP_CIPHER_mode) macro
/third_party/openssl/
DCHANGES9684 *) Fix EVP_CIPHER_mode macro.