Finish a Base64 decode, flushing any remaining decoded bytes.
Declared in <openssl/evp.h>
int
EVP_DecodeFinal(
EVP_ENCODE_CTX* ctx,
unsigned char* out,
int* outl);
1 on success, or a negative value on decode error.
| 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. |