[#EVP_CipherFinal] = EVP_CipherFinal :mrdocs: Finalize a cipher operation and write any remaining output bytes. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_CipherFinal( xref:EVP_CIPHER_CTX.adoc[EVP_CIPHER_CTX]* ctx, unsigned char* outm, int* outl); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Cipher context previously used with EVP_CipherUpdate(). | *outm* | Buffer receiving final output bytes. | *outl* | Receives the number of bytes written to `outm.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#