Searched refs:conv_bin2ascii (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dencode.c66 # define conv_bin2ascii(a) (data_bin2ascii[(a)&0x3f]) macro
71 * (text) format again. (No need for conversion in the conv_bin2ascii macro,
74 # define conv_bin2ascii(a) (data_bin2ascii[(a)&0x3f]) macro
220 *(t++) = conv_bin2ascii(l >> 18L);
221 *(t++) = conv_bin2ascii(l >> 12L);
222 *(t++) = conv_bin2ascii(l >> 6L);
223 *(t++) = conv_bin2ascii(l);
229 *(t++) = conv_bin2ascii(l >> 18L);
230 *(t++) = conv_bin2ascii(l >> 12L);
231 *(t++) = (i == 1) ? '=' : conv_bin2ascii(
[all...]

Completed in 97 milliseconds