Flush remaining Base64-encoded output from an encode context.
Declared in <openssl/evp.h>
void
EVP_EncodeFinal(
EVP_ENCODE_CTX* ctx,
unsigned char* out,
int* outl);
| Name | Description |
|---|---|
| ctx | Encode context previously used with EVP_EncodeUpdate(). |
| out | Buffer receiving the final encoded bytes (and trailing newline when applicable). |
| outl | Receives the number of bytes written to out. |