Searched defs:conv_ascii2bin (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpem_encode.c97 #define conv_ascii2bin(a) (data_ascii2bin[(a)&0x7f]) macro
274 while ((conv_ascii2bin(*f) == B64_WS) && (n > 0)) {
283 while ((n > 3) && (B64_NOT_BASE64(conv_ascii2bin(f[n-1]))))
291 a = conv_ascii2bin(*(f++));
292 b = conv_ascii2bin(*(f++));
293 c = conv_ascii2bin(*(f++));
294 d = conv_ascii2bin(*(f++));
335 if ((inl == 0) || ((n == 0) && (conv_ascii2bin(in[0]) == B64_EOF))) {
350 v = conv_ascii2bin(tmp);

Completed in 59 milliseconds