mbedtls_ct_base64_dec_value() function
Given a Base64 digit, return its value. If c is not a Base64 digit ('A'..'Z', 'a'..'z', '0'..'9', '+' or '/'), return -1. The implementation assumes that letters are consecutive (e.g. ASCII but not EBCDIC).
Syntax
signed char mbedtls_ct_base64_dec_value(unsigned char c); Return value
The value of the base64 digit \p c.