Home
last modified time | relevance | path

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

/dports/security/p5-Crypt-UnixCrypt_XS/Crypt-UnixCrypt_XS-0.11/fcrypt/
H A Dfcrypt.c531 unsigned char base64_val_to_char[64]={ variable
555 base64[0] = base64_val_to_char[val & 0x3f]; in int12_to_base64()
556 base64[1] = base64_val_to_char[(val >> 6) & 0x3f]; in int12_to_base64()
575 base64[0] = base64_val_to_char[val & 0x3f]; in int24_to_base64()
576 base64[1] = base64_val_to_char[(val >> 6) & 0x3f]; in int24_to_base64()
577 base64[2] = base64_val_to_char[(val >> 12) & 0x3f]; in int24_to_base64()
587 base64[0] = base64_val_to_char[block[0] >> 2]; in block_to_base64()
590 base64[3] = base64_val_to_char[block[2] & 0x3f]; in block_to_base64()
591 base64[4] = base64_val_to_char[block[3] >> 2]; in block_to_base64()
594 base64[7] = base64_val_to_char[block[5] & 0x3f]; in block_to_base64()
[all …]