[#EVP_DecodeFinal] = EVP_DecodeFinal :mrdocs: Finish a Base64 decode, flushing any remaining decoded bytes. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_DecodeFinal( xref:EVP_ENCODE_CTX.adoc[EVP_ENCODE_CTX]* ctx, unsigned char* out, int* outl); ---- == Return Value 1 on success, or a negative value on decode error. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Decode context previously used with EVP_DecodeUpdate(). | *out* | Buffer receiving final decoded bytes. | *outl* | Receives the number of bytes written to `out.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#