HomeSort by: relevance | last modified time | path
    Searched defs:itoa64 (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libcrypt/
util.c 45 static const unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ variable in typeref:typename:const unsigned char[]
81 *s++ = itoa64[v & 0x3f];
crypt.c 442 static const unsigned char itoa64[] = /* 0..63 => ascii-64 */ variable in typeref:typename:const unsigned char[]
630 if (itoa64[value] != setting[i])
651 if (salt_size > 2 && itoa64[value] != setting[i])
666 encp[3] = itoa64[i&0x3f]; i >>= 6;
667 encp[2] = itoa64[i&0x3f]; i >>= 6;
668 encp[1] = itoa64[i&0x3f]; i >>= 6;
669 encp[0] = itoa64[i]; encp += 4;
672 encp[3] = itoa64[i&0x3f]; i >>= 6;
673 encp[2] = itoa64[i&0x3f]; i >>= 6;
674 encp[1] = itoa64[i&0x3f]; i >>= 6
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
crypto_scrypt-common.c 30 static const char *const itoa64 = variable in typeref:typename:const char * const
42 *dst++ = itoa64[src & 0x3f];
76 const char *ptr = strchr(itoa64, src);
79 *dst = (uint32_t)(ptr - itoa64);
219 *dst++ = itoa64[N_log2];

Completed in 14 milliseconds