Home
last modified time | relevance | path

Searched refs:conv_ascii2bin (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpem_encode.c95 #define conv_ascii2bin(a) (data_ascii2bin[(a)&0x7f]) macro
272 while ((conv_ascii2bin(*f) == B64_WS) && (n > 0)) { in PEM_DecodeBlock()
281 while ((n > 3) && (B64_NOT_BASE64(conv_ascii2bin(f[n-1])))) in PEM_DecodeBlock()
289 a = conv_ascii2bin(*(f++)); in PEM_DecodeBlock()
290 b = conv_ascii2bin(*(f++)); in PEM_DecodeBlock()
291 c = conv_ascii2bin(*(f++)); in PEM_DecodeBlock()
292 d = conv_ascii2bin(*(f++)); in PEM_DecodeBlock()
333 if ((inl == 0) || ((n == 0) && (conv_ascii2bin(in[0]) == B64_EOF))) { in PEM_DecodeUpdate()
348 v = conv_ascii2bin(tmp); in PEM_DecodeUpdate()