Home
last modified time | relevance | path

Searched refs:EVP_CipherInit_ex (Results 1 – 19 of 19) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/cipher/
Dcipher.c133 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex() function
232 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); in EVP_EncryptInit_ex()
237 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0); in EVP_DecryptInit_ex()
598 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc); in EVP_CipherInit()
/external/boringssl/src/crypto/cipher_extra/
Dcipher_test.cc133 ASSERT_TRUE(EVP_CipherInit_ex(ctx.get(), cipher, nullptr, nullptr, nullptr, in TestOperation()
153 ASSERT_TRUE(EVP_CipherInit_ex(ctx.get(), nullptr, nullptr, key.data(), in TestOperation()
De_ssl3.c112 if (!EVP_CipherInit_ex(&ssl3_ctx->cipher_ctx, cipher, NULL, &key[mac_key_len], in aead_ssl3_init()
De_tls.c88 if (!EVP_CipherInit_ex(&tls_ctx->cipher_ctx, cipher, NULL, &key[mac_key_len], in aead_tls_init()
/external/boringssl/src/fipstools/
Dcavp_test_util.cc84 if (!EVP_CipherInit_ex(ctx.get(), cipher, nullptr, nullptr, nullptr, in CipherOperation()
95 !EVP_CipherInit_ex(ctx.get(), nullptr, nullptr, key.data(), iv.data(), in CipherOperation()
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLCipher.java545 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, null, null, encrypting); in engineInitInternal()
547 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting()); in engineInitInternal()
549 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, encodedKey, iv, encrypting); in engineInitInternal()
653 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting()); in reset()
DNativeCrypto.java291 static native void EVP_CipherInit_ex(NativeRef.EVP_CIPHER_CTX ctx, long evpCipher, byte[] key, in EVP_CipherInit_ex() method in NativeCrypto
/external/boringssl/src/crypto/pkcs8/
Dp5_pbev2.c155 EVP_CipherInit_ex(ctx, cipher, NULL /* engine */, key, iv, enc); in pkcs5_pbe2_cipher_init()
Dpkcs8.c241 int ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, is_encrypt); in pkcs12_pbe_cipher_init()
/external/boringssl/src/include/openssl/
Dcipher.h152 OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java2917 NativeCrypto.EVP_CipherInit_ex(null, evpCipher, null, null, true); in EVP_CipherInit_ex_withNullCtxShouldThrow()
2927 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, null, null, true); in test_EVP_CipherInit_ex_Null_Failure()
2928 NativeCrypto.EVP_CipherInit_ex(ctx, NULL, null, null, true); in test_EVP_CipherInit_ex_Null_Failure()
2931 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, null, null, false); in test_EVP_CipherInit_ex_Null_Failure()
2932 NativeCrypto.EVP_CipherInit_ex(ctx, NULL, null, null, false); in test_EVP_CipherInit_ex_Null_Failure()
2940 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, AES_128_KEY, null, true); in test_EVP_CipherInit_ex_Success()
/external/tcpdump/
Dprint-esp.c165 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc); in set_cipher_parameters()
Dconfigure.in945 # 2) do we have EVP_CipherInit_ex()?
957 AC_CHECK_FUNCS(EVP_CIPHER_CTX_new EVP_CipherInit_ex)
Dconfig.h.in37 /* Define to 1 if you have the `EVP_CipherInit_ex' function. */
Dconfigure8138 for ac_func in EVP_CIPHER_CTX_new EVP_CipherInit_ex
/external/wpa_supplicant_8/src/crypto/
Dcrypto_openssl.c201 !EVP_CipherInit_ex(ctx, EVP_rc4(), NULL, NULL, NULL, 1) || in rc4_skip()
203 !EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, 1)) in rc4_skip()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc944 !EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, kZeros, iv, encrypt)) { in TicketKeyCallback()
/external/boringssl/src/ssl/
Dssl_test.cc2240 !EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, kZeros, iv, encrypt)) { in RenewTicketCallback()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc3186 if (!EVP_CipherInit_ex(ctx, evpCipher, nullptr, keyPtr.get(), ivPtr.get(), in NativeCrypto_EVP_CipherInit_ex()
9826 CONSCRYPT_NATIVE_METHOD(EVP_CipherInit_ex, "(" REF_EVP_CIPHER_CTX "J[B[BZ)V"),