Home
last modified time | relevance | path

Searched refs:EVP_CipherUpdate (Results 1 – 8 of 8) sorted by relevance

/external/boringssl/src/crypto/cipher/
Dcipher_test.cc167 !EVP_CipherUpdate(ctx.get(), nullptr, &unused, aad.data(), in TestOperation()
177 if (!EVP_CipherUpdate(ctx.get(), result.data() + result_len1, &len, &c, in TestOperation()
185 !EVP_CipherUpdate(ctx.get(), result.data(), &result_len1, in TestOperation()
Dcipher.c488 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_CipherUpdate() function
/external/boringssl/src/include/openssl/
Dcipher.h219 OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
/external/wpa_supplicant_8/src/crypto/
Dcrypto_openssl.c197 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len)) in rc4_skip()
202 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len)) in rc4_skip()
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java285 public static native int EVP_CipherUpdate(NativeRef.EVP_CIPHER_CTX ctx, byte[] out, in EVP_CipherUpdate() method in NativeCrypto
DOpenSSLCipher.java542 outputOffset += NativeCrypto.EVP_CipherUpdate(cipherCtx, output, outputOffset, input, in updateInternal()
/external/boringssl/src/crypto/pkcs8/
Dpkcs8.c433 if (!EVP_CipherUpdate(&ctx, buf, &n, in, in_len)) { in pbe_crypt()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp4737 if (!EVP_CipherUpdate(ctx, out + outOffset, &outl, in + inOffset, inLength)) {
11124 NATIVE_METHOD(NativeCrypto, EVP_CipherUpdate, "(" REF_EVP_CIPHER_CTX "[BI[BII)I"),