HomeSort by relevance Sort by last modified time
    Searched defs:EVP_EncryptUpdate (Results 1 - 2 of 2) sorted by null

  /external/openssl/crypto/evp/
evp_enc.c 266 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
308 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
460 return EVP_EncryptUpdate(ctx, out, outl, in, inl);
475 if(!EVP_EncryptUpdate(ctx,out,outl,in,inl))
  /external/chromium_org/third_party/boringssl/src/crypto/cipher/
cipher.c 255 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len,
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);

Completed in 489 milliseconds