Searched refs:EVP_CipherInit_ex (Results 26 - 31 of 31) sorted by relevance

12

/external/conscrypt/src/main/java/org/conscrypt/
H A DNativeCrypto.java329 public static native void EVP_CipherInit_ex(long ctx, long evpCipher, byte[] key, byte[] iv, method in class:NativeCrypto
/external/openssl/ssl/
H A Ds3_enc.c376 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE));
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dt1_enc.c470 EVP_CipherInit_ex(cipher_ctx, cipher, NULL /* engine */, key, iv, !is_read);
/external/openssl/crypto/evp/
H A Devp.h601 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
/external/openssl/include/openssl/
H A Devp.h601 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4361 JNI_TRACE("EVP_CipherInit_ex(%p, %p, %p, %p, %d)", ctx, evpCipher, keyArray, ivArray,
4394 if (!EVP_CipherInit_ex(ctx, evpCipher, NULL, keyPtr.get(), ivPtr.get(), encrypting ? 1 : 0)) {
4395 throwExceptionIfNecessary(env, "EVP_CipherInit_ex");
4396 JNI_TRACE("EVP_CipherInit_ex => error initializing cipher");
4400 JNI_TRACE("EVP_CipherInit_ex(%p, %p, %p, %p, %d) => success", ctx, evpCipher, keyArray, ivArray,
4513 JNI_TRACE("EVP_CipherInit_ex => context allocation error");
9655 NATIVE_METHOD(NativeCrypto, EVP_CipherInit_ex, "(JJ[B[BZ)V"),

Completed in 260 milliseconds

12