Lines Matching refs:EVP_CipherUpdate
23 EVP_CipherUpdate,
145 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
444 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and
457 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
483 in applications, please consider using EVP_CipherUpdate() and
494 data in one set of EVP_CipherUpdate()/EVP_CipherFinal calls, thereby allowing
508 EVP_EncryptInit_ex2(), EVP_DecryptInit_ex2(), EVP_CipherUpdate() and
525 For size requirement of the output buffers, see the description of EVP_CipherUpdate().
785 allows a single call to EVP_CipherUpdate().
1027 EVP_DecryptUpdate() and EVP_CipherUpdate() is the number of bits or number of bytes.
1380 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for
1468 To specify additional authenticated data (AAD), a call to EVP_CipherUpdate(),
1479 EVP_CipherUpdate() depends on the cipher used. Stream ciphers, such as ChaCha20
1485 EVP_CipherUpdate() call in a single operation.
1537 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() with the output
1574 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1617 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1816 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
1866 /* NOTE: CTS mode does not support multiple calls to EVP_CipherUpdate() */
1867 if (!EVP_CipherUpdate(ctx, out, &outlen, msg, msg_len))