Searched defs:EVP_EncryptUpdate (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Dcipher.c255 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, function
391 return EVP_EncryptUpdate(ctx, out, out_len, in, in_len);
405 if (!EVP_EncryptUpdate(ctx, out, out_len, in, in_len)) {
495 return EVP_EncryptUpdate(ctx, out, out_len, in, in_len);
/external/openssl/crypto/evp/
H A Devp_enc.c266 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
308 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, function
460 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
475 if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))

Completed in 113 milliseconds