mbedtls_ct_base64_enc_char() function
Given a value in the range 0..63, return the corresponding Base64 digit. The implementation assumes that letters are consecutive (e.g. ASCII but not EBCDIC).
Syntax
unsigned char mbedtls_ct_base64_enc_char(unsigned char value); Arguments
value
A value in the range 0..63.
Return value
A base64 digit converted from \p value.