Base64‐decode n characters from f into t as a single block.

Synopsis

Declared in <openssl/evp.h>

int
EVP_DecodeBlock(
    unsigned char* t,
    unsigned char const* f,
    int n);

Return Value

Number of decoded bytes written, or ‐1 on error.

Parameters

Name

Description

t

Destination buffer for decoded octets.

f

Base64 input characters (whitespace should already be removed for legacy behaviour).

n

Number of input characters; should be a multiple of four.

Created with MrDocs