/external/boringssl/src/crypto/pkcs8/ |
D | p5_pbev2.c | 154 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0)) in PKCS5_pbe2_set_iv() 383 rv = EVP_CipherInit_ex(ctx, NULL /* cipher */, NULL /* engine */, key, in PKCS5_v2_PBKDF2_keyivgen() 428 if (!EVP_CipherInit_ex(ctx, cipher, NULL /* engine */, NULL /* key */, in PKCS5_v2_PBE_keyivgen()
|
D | pkcs8.c | 262 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, is_encrypt); in pkcs12_pbe_keyivgen()
|
/external/boringssl/src/crypto/cipher/ |
D | cipher.c | 147 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex() function 246 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); in EVP_EncryptInit_ex() 251 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0); in EVP_DecryptInit_ex() 612 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc); in EVP_CipherInit()
|
D | cipher_test.cc | 131 if (!EVP_CipherInit_ex(ctx.get(), cipher, nullptr, nullptr, nullptr, in TestOperation() 164 !EVP_CipherInit_ex(ctx.get(), nullptr, nullptr, key.data(), iv.data(), in TestOperation()
|
D | e_ssl3.c | 112 if (!EVP_CipherInit_ex(&ssl3_ctx->cipher_ctx, cipher, NULL, &key[mac_key_len], in aead_ssl3_init()
|
D | e_tls.c | 90 if (!EVP_CipherInit_ex(&tls_ctx->cipher_ctx, cipher, NULL, &key[mac_key_len], in aead_tls_init()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLCipher.java | 517 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, null, null, encrypting); in engineInitInternal() 519 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting()); in engineInitInternal() 521 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, encodedKey, iv, encrypting); in engineInitInternal() 625 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting()); in reset()
|
D | NativeCrypto.java | 282 public static native void EVP_CipherInit_ex(NativeRef.EVP_CIPHER_CTX ctx, long evpCipher, in EVP_CipherInit_ex() method in NativeCrypto
|
/external/boringssl/src/include/openssl/ |
D | cipher.h | 147 OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2944 NativeCrypto.EVP_CipherInit_ex(null, evpCipher, null, null, true); in test_EVP_CipherInit_ex_Null_Failure() 2950 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, null, null, true); in test_EVP_CipherInit_ex_Null_Failure() 2951 NativeCrypto.EVP_CipherInit_ex(ctx, NULL, null, null, true); in test_EVP_CipherInit_ex_Null_Failure() 2954 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, null, null, false); in test_EVP_CipherInit_ex_Null_Failure() 2955 NativeCrypto.EVP_CipherInit_ex(ctx, NULL, null, null, false); in test_EVP_CipherInit_ex_Null_Failure() 2962 NativeCrypto.EVP_CipherInit_ex(ctx, evpCipher, AES_128_KEY, null, true); in test_EVP_CipherInit_ex_Success()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_openssl.c | 188 !EVP_CipherInit_ex(ctx, EVP_rc4(), NULL, NULL, NULL, 1) || in rc4_skip() 190 !EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, 1)) in rc4_skip()
|
/external/boringssl/src/ssl/test/ |
D | bssl_shim.cc | 582 !EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, kZeros, iv, encrypt)) { in TicketKeyCallback()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 4687 if (!EVP_CipherInit_ex(ctx, evpCipher, nullptr, keyPtr.get(), ivPtr.get(), 11123 NATIVE_METHOD(NativeCrypto, EVP_CipherInit_ex, "(" REF_EVP_CIPHER_CTX "J[B[BZ)V"),
|