Home
last modified time | relevance | path

Searched refs:EVP_CIPHER_CTX_new (Results 1 – 12 of 12) sorted by relevance

/external/tcpdump/
Dprint-esp.c129 EVP_CIPHER_CTX_new(void) in EVP_CIPHER_CTX_new() function
188 ctx = EVP_CIPHER_CTX_new(); in esp_print_decrypt_buffer_by_ikev2()
712 ctx = EVP_CIPHER_CTX_new(); in esp_print()
Dconfigure.in938 # OK, do we have EVP_CIPHER_CTX_new?
943 AC_CHECK_FUNCS(EVP_CIPHER_CTX_new)
Dconfig.h.in37 /* Define to 1 if you have the `EVP_CIPHER_CTX_new' function. */
Dconfigure8124 for ac_func in EVP_CIPHER_CTX_new
/external/wpa_supplicant_8/src/crypto/
Dcrypto_openssl.c197 ctx = EVP_CIPHER_CTX_new(); in rc4_skip()
286 ctx = EVP_CIPHER_CTX_new(); in aes_encrypt_init()
338 ctx = EVP_CIPHER_CTX_new(); in aes_decrypt_init()
425 ctx = EVP_CIPHER_CTX_new(); in aes_128_cbc_encrypt()
452 ctx = EVP_CIPHER_CTX_new(); in aes_128_cbc_decrypt()
571 if (!(ctx->enc = EVP_CIPHER_CTX_new()) || in crypto_cipher_init()
582 if (!(ctx->dec = EVP_CIPHER_CTX_new()) || in crypto_cipher_init()
/external/boringssl/src/include/openssl/
Dcipher.h123 OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
/external/boringssl/src/crypto/fipsmodule/cipher/
Dcipher.c74 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void) { in EVP_CIPHER_CTX_new() function
/external/openssh/
Dcipher.c375 if ((cc->evp = EVP_CIPHER_CTX_new()) == NULL) { in cipher_init()
/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeCrypto.java268 static native long EVP_CIPHER_CTX_new(); in EVP_CIPHER_CTX_new() method in NativeCrypto
DOpenSSLCipher.java457 NativeCrypto.EVP_CIPHER_CTX_new());
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java2863 new NativeRef.EVP_CIPHER_CTX(NativeCrypto.EVP_CIPHER_CTX_new()); in test_EVP_CipherInit_ex_Null_Failure()
2878 new NativeRef.EVP_CIPHER_CTX(NativeCrypto.EVP_CIPHER_CTX_new()); in test_EVP_CipherInit_ex_Success()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp3074 bssl::UniquePtr<EVP_CIPHER_CTX> ctx(EVP_CIPHER_CTX_new()); in NativeCrypto_EVP_CIPHER_CTX_new()
9445 CONSCRYPT_NATIVE_METHOD(NativeCrypto, EVP_CIPHER_CTX_new, "()J"),