Searched refs:buf_perm (Results 1 – 1 of 1) sorted by relevance
444 unsigned char buf_perm[sizeof(buf)]; in md5crypt() local451 buf_perm[dest] = buf[source]; in md5crypt()452 buf_perm[14] = buf[5]; in md5crypt()453 buf_perm[15] = buf[11]; in md5crypt()456 assert(16 == sizeof(buf_perm)); in md5crypt()465 *output++ = cov_2char[buf_perm[i + 2] & 0x3f]; in md5crypt()466 *output++ = cov_2char[((buf_perm[i + 1] & 0xf) << 2) | in md5crypt()467 (buf_perm[i + 2] >> 6)]; in md5crypt()468 *output++ = cov_2char[((buf_perm[i] & 3) << 4) | in md5crypt()469 (buf_perm[i + 1] >> 4)]; in md5crypt()[all …]