Home
last modified time | relevance | path

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

/freebsd/lib/libcrypt/
H A Dmisc.c36 static char itoa64[] = /* 0 ... 63 => ascii - 64 */ variable
43 *s++ = itoa64[v&0x3f]; in _crypt_to64()
56 **cp = itoa64[w&0x3f]; in b64_from_24bit()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dcrypto_scrypt-common.c30 static const char *const itoa64 = variable
42 *dst++ = itoa64[src & 0x3f]; in encode64_uint32()
76 const char *ptr = strchr(itoa64, src); in decode64_one()
79 *dst = (uint32_t)(ptr - itoa64); in decode64_one()
219 *dst++ = itoa64[N_log2]; in escrypt_gensalt_r()
/freebsd/lib/libpam/modules/pam_unix/
H A Dpam_unix.c465 static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ variable
472 *s++ = itoa64[v&0x3f]; in to64()