Home
last modified time | relevance | path

Searched refs:EVP_get_cipherbyname (Results 1 – 7 of 7) sorted by relevance

/external/boringssl/src/include/openssl/
Dcipher.h397 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
/external/tcpdump/
Dprint-esp.c281 evp = EVP_get_cipherbyname(decode); in espprint_decode_encalgo()
/external/boringssl/src/crypto/cipher/
Dcipher.c629 const EVP_CIPHER *EVP_get_cipherbyname(const char *name) { in EVP_get_cipherbyname() function
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2941 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Null_Failure()
2961 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Success()
2966 long aes128ecb = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CIPHER_iv_length()
2969 long aes128cbc = NativeCrypto.EVP_get_cipherbyname("aes-128-cbc"); in test_EVP_CIPHER_iv_length()
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java280 public static native long EVP_get_cipherbyname(String string); in EVP_get_cipherbyname() method in NativeCrypto
DOpenSSLCipher.java486 final long cipherType = NativeCrypto.EVP_get_cipherbyname(getCipherName( in engineInitInternal()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp4598 const EVP_CIPHER* evp_cipher = EVP_get_cipherbyname(algorithmChars.c_str());
11130 NATIVE_METHOD(NativeCrypto, EVP_get_cipherbyname, "(Ljava/lang/String;)J"),