Home | History | Annotate | Download | only in native

Lines Matching refs:EVP_CipherInit_ex

3370     JNI_TRACE("EVP_CipherInit_ex(%p, %p, %p, %p, %d)", ctx, evpCipher, keyArray, ivArray,
3403 if (!EVP_CipherInit_ex(ctx, evpCipher, NULL, keyPtr.get(), ivPtr.get(), encrypting ? 1 : 0)) {
3404 throwExceptionIfNecessary(env, "EVP_CipherInit_ex");
3405 JNI_TRACE("EVP_CipherInit_ex => error initializing cipher");
3409 JNI_TRACE("EVP_CipherInit_ex(%p, %p, %p, %p, %d) => success", ctx, evpCipher, keyArray, ivArray,
3518 JNI_TRACE("EVP_CipherInit_ex => context allocation error");
7876 NATIVE_METHOD(NativeCrypto, EVP_CipherInit_ex, "(JJ[B[BZ)V"),