Lines Matching refs:EVP_CipherUpdate
21 EVP_CipherUpdate,
136 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
403 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and
416 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
442 in applications, please consider using EVP_CipherUpdate() and
692 allows a single call to EVP_CipherUpdate().
892 EVP_DecryptUpdate() and EVP_CipherUpdate() is the number of bits or number of bytes.
1195 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for failure.
1269 To specify additional authenticated data (AAD), a call to EVP_CipherUpdate(),
1327 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output
1362 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1394 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1576 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
1626 /* NOTE: CTS mode does not support multiple calls to EVP_CipherUpdate() */
1627 if (!EVP_CipherUpdate(ctx, encrypted, &outlen, msg, msglen))