Home
last modified time | relevance | path

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

/src/crypto/openssl/apps/
H A Dpasswd.c451 unsigned char buf_perm[sizeof(buf)]; in md5crypt() local
458 buf_perm[dest] = buf[source]; in md5crypt()
459 buf_perm[14] = buf[5]; in md5crypt()
460 buf_perm[15] = buf[11]; in md5crypt()
463 assert(16 == sizeof(buf_perm)); in md5crypt()
472 *output++ = cov_2char[buf_perm[i + 2] & 0x3f]; in md5crypt()
473 *output++ = cov_2char[((buf_perm[i + 1] & 0xf) << 2) | (buf_perm[i + 2] >> 6)]; in md5crypt()
474 *output++ = cov_2char[((buf_perm[i] & 3) << 4) | (buf_perm[i + 1] >> 4)]; in md5crypt()
475 *output++ = cov_2char[buf_perm[i] >> 2]; in md5crypt()
478 *output++ = cov_2char[buf_perm[i] & 0x3f]; in md5crypt()
[all …]