Searched refs:EVP_CipherFinal_ex (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/content/child/webcrypto/openssl/
H A Daes_cbc_openssl.cc98 if (!EVP_CipherFinal_ex(
H A Daes_ctr_openssl.cc77 if (!EVP_CipherFinal_ex(
/external/openssl/crypto/pkcs12/
H A Dp12_decr.c101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) {
/external/chromium_org/crypto/
H A Dencryptor_openssl.cc127 if (!EVP_CipherFinal_ex(ctx.get(), out_ptr + out_len, &tail_len))
/external/openssl/crypto/evp/
H A Dbio_enc.c187 i=EVP_CipherFinal_ex(&(ctx->cipher),
335 ret=EVP_CipherFinal_ex(&(ctx->cipher),
H A Devp_enc.c270 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) function
H A Devp.h607 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dcipher.h206 /* EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
208 OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLCipher.java430 writtenBytes = NativeCrypto.EVP_CipherFinal_ex(cipherCtx.getContext(), output,
434 writtenBytes = NativeCrypto.EVP_CipherFinal_ex(cipherCtx.getContext(), lastBlock, 0);
H A DNativeCrypto.java335 public static native int EVP_CipherFinal_ex(long ctx, byte[] out, int outOffset) method in class:NativeCrypto
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Dcipher.c501 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len) { function
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dpkcs8.c380 if (!EVP_CipherFinal_ex(&ctx, buf + n, &n)) {
/external/openssl/include/openssl/
H A Devp.h607 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp4462 JNI_TRACE("EVP_CipherFinal_ex(%p, %p, %d)", ctx, outArray, outOffset);
4466 JNI_TRACE("ctx=%p EVP_CipherFinal_ex => ctx == null", ctx);
4478 if (!EVP_CipherFinal_ex(ctx, out + outOffset, &outl)) {
4479 if (throwExceptionIfNecessary(env, "EVP_CipherFinal_ex")) {
4480 JNI_TRACE("ctx=%p EVP_CipherFinal_ex => threw error", ctx);
4482 throwBadPaddingException(env, "EVP_CipherFinal_ex");
4483 JNI_TRACE("ctx=%p EVP_CipherFinal_ex => threw padding exception", ctx);
9657 NATIVE_METHOD(NativeCrypto, EVP_CipherFinal_ex, "(J[BI)I"),

Completed in 375 milliseconds