Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/cipher_extra/
Dcipher_extra.c91 const EVP_CIPHER *EVP_get_cipherbyname(const char *name) { in EVP_get_cipherbyname() function
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLEvpCipher.java65 final long cipherType = NativeCrypto.EVP_get_cipherbyname(getCipherName( in engineInitInternal()
DNativeCrypto.java289 static native long EVP_get_cipherbyname(String string); in EVP_get_cipherbyname() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLEvpCipher.java69 final long cipherType = NativeCrypto.EVP_get_cipherbyname(getCipherName( in engineInitInternal()
DNativeCrypto.java298 static native long EVP_get_cipherbyname(String string); in EVP_get_cipherbyname() method in NativeCrypto
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Daead.py28 evp_cipher = backend._lib.EVP_get_cipherbyname(cipher_name)
Dbackend.py1712 evp_cipher = self._lib.EVP_get_cipherbyname(
2223 self._lib.EVP_get_cipherbyname(cipher_name) != self._ffi.NULL
2322 return backend._lib.EVP_get_cipherbyname(cipher_name.encode("ascii"))
2327 return backend._lib.EVP_get_cipherbyname(cipher_name.encode("ascii"))
/external/boringssl/src/include/openssl/
Dcipher.h407 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
/external/tcpdump/
Dprint-esp.c363 evp = EVP_get_cipherbyname(decode); in espprint_decode_encalgo()
/external/python/cryptography/tests/hazmat/backends/
Dtest_openssl.py124 cipher = backend._lib.EVP_get_cipherbyname(b"aes-256-cbc")
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java2976 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in EVP_CipherInit_ex_withNullCtxShouldThrow()
2984 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Null_Failure()
2999 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Success()
3005 long aes128ecb = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CIPHER_iv_length()
3008 long aes128cbc = NativeCrypto.EVP_get_cipherbyname("aes-128-cbc"); in test_EVP_CIPHER_iv_length()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java2967 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in EVP_CipherInit_ex_withNullCtxShouldThrow()
2975 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Null_Failure()
2990 final long evpCipher = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CipherInit_ex_Success()
2996 long aes128ecb = NativeCrypto.EVP_get_cipherbyname("aes-128-ecb"); in test_EVP_CIPHER_iv_length()
2999 long aes128cbc = NativeCrypto.EVP_get_cipherbyname("aes-128-cbc"); in test_EVP_CIPHER_iv_length()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list1304 EVP_get_cipherbyname
DBoringSSL-GRPC.podspec2856 '#define EVP_get_cipherbyname GRPC_SHADOW_EVP_get_cipherbyname',
/external/python/pyopenssl/src/OpenSSL/
Dcrypto.py1920 cipher_obj = _lib.EVP_get_cipherbyname(_byte_string(cipher))
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h1332 #define EVP_get_cipherbyname GRPC_SHADOW_EVP_get_cipherbyname macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc10161 CONSCRYPT_NATIVE_METHOD(EVP_get_cipherbyname, "(Ljava/lang/String;)J"),