Home
last modified time | relevance | path

Searched refs:EVP_DecryptUpdate (Results 1 – 7 of 7) sorted by relevance

/external/boringssl/src/crypto/cipher/
Dcipher.c362 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_DecryptUpdate() function
490 return EVP_DecryptUpdate(ctx, out, out_len, in, in_len); in EVP_CipherUpdate()
De_ssl3.c256 if (!EVP_DecryptUpdate(&ssl3_ctx->cipher_ctx, out, &len, in, (int)in_len)) { in aead_ssl3_open()
De_tls.c260 if (!EVP_DecryptUpdate(&tls_ctx->cipher_ctx, out, &len, in, (int)in_len)) { in aead_tls_open()
/external/boringssl/src/include/openssl/
Dcipher.h190 OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
/external/wpa_supplicant_8/src/crypto/
Dcrypto_openssl.c275 if (EVP_DecryptUpdate(c, plain, &plen, crypt, 16) != 1) { in aes_decrypt()
364 if (EVP_DecryptUpdate(&ctx, data, &plen, data, data_len) != 1 || in aes_128_cbc_decrypt()
516 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len)) in crypto_cipher_decrypt()
/external/boringssl/src/crypto/pem/
Dpem_lib.c423 o = EVP_DecryptUpdate(&ctx,data,&i,data,j); in PEM_do_header()
/external/boringssl/src/ssl/
Dt1_lib.c2177 EVP_DecryptUpdate(&ctx, sdec, &slen, p, eticklen); in tls_decrypt_ticket()