Lines Matching refs:EVP_CipherUpdate
21 EVP_CipherUpdate,
136 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
400 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and
413 EVP_CipherInit() / EVP_CipherUpdate() / EVP_CipherFinal() series of calls.
439 in applications, please consider using EVP_CipherUpdate() and
689 allows a single call to EVP_CipherUpdate().
889 EVP_DecryptUpdate() and EVP_CipherUpdate() is the number of bits or number of bytes.
1192 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for failure.
1267 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
1405 EVP_CipherUpdate(), EVP_EncryptUpdate() or EVP_DecryptUpdate() should be made
1604 if (!EVP_CipherUpdate(ctx, outbuf, &outlen, inbuf, inlen)) {
1654 /* NOTE: CTS mode does not support multiple calls to EVP_CipherUpdate() */
1655 if (!EVP_CipherUpdate(ctx, out, &outlen, msg, msg_len))