Lines Matching refs:f
20 const unsigned char *f, int dlen);
22 const unsigned char *f, int n);
232 const unsigned char *f, int dlen) in evp_encodeblock_int() argument
245 l = (((unsigned long)f[0]) << 16L) | in evp_encodeblock_int()
246 (((unsigned long)f[1]) << 8L) | f[2]; in evp_encodeblock_int()
252 l = ((unsigned long)f[0]) << 16L; in evp_encodeblock_int()
254 l |= ((unsigned long)f[1] << 8L); in evp_encodeblock_int()
262 f += 3; in evp_encodeblock_int()
269 int EVP_EncodeBlock(unsigned char *t, const unsigned char *f, int dlen) in EVP_EncodeBlock() argument
271 return evp_encodeblock_int(NULL, t, f, dlen); in EVP_EncodeBlock()
414 const unsigned char *f, int n) in evp_decodeblock_int() argument
426 while ((n > 0) && (conv_ascii2bin(*f, table) == B64_WS)) { in evp_decodeblock_int()
427 f++; in evp_decodeblock_int()
435 while ((n > 3) && (B64_NOT_BASE64(conv_ascii2bin(f[n - 1], table)))) in evp_decodeblock_int()
442 a = conv_ascii2bin(*(f++), table); in evp_decodeblock_int()
443 b = conv_ascii2bin(*(f++), table); in evp_decodeblock_int()
444 c = conv_ascii2bin(*(f++), table); in evp_decodeblock_int()
445 d = conv_ascii2bin(*(f++), table); in evp_decodeblock_int()
459 int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n) in EVP_DecodeBlock() argument
461 return evp_decodeblock_int(NULL, t, f, n); in EVP_DecodeBlock()