Home
last modified time | relevance | path

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

/external/openssl/apps/
Dpasswd.c30 static unsigned const char cov_2char[64]={ variable
397 *output++ = cov_2char[buf_perm[i+2] & 0x3f]; in md5crypt()
398 *output++ = cov_2char[((buf_perm[i+1] & 0xf) << 2) | in md5crypt()
400 *output++ = cov_2char[((buf_perm[i] & 3) << 4) | in md5crypt()
402 *output++ = cov_2char[buf_perm[i] >> 2]; in md5crypt()
405 *output++ = cov_2char[buf_perm[i] & 0x3f]; in md5crypt()
406 *output++ = cov_2char[buf_perm[i] >> 6]; in md5crypt()
440 (*salt_p)[0] = cov_2char[(*salt_p)[0] & 0x3f]; /* 6 bits */ in do_passwd()
441 (*salt_p)[1] = cov_2char[(*salt_p)[1] & 0x3f]; /* 6 bits */ in do_passwd()
465 (*salt_p)[i] = cov_2char[(*salt_p)[i] & 0x3f]; /* 6 bits */ in do_passwd()
/external/openssl/crypto/des/
Dfcrypt.c50 static unsigned const char cov_2char[64]={ variable
165 ret[i]=cov_2char[c]; in DES_fcrypt()