HomeSort by: relevance | last modified time | path
    Searched refs:__crypt_to64 (Results 1 - 5 of 5) sorted by relevancy

  /src/lib/libcrypt/
md5crypt.c 137 l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; __crypt_to64(p,l,4); p += 4;
138 l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; __crypt_to64(p,l,4); p += 4;
139 l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; __crypt_to64(p,l,4); p += 4;
140 l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; __crypt_to64(p,l,4); p += 4;
141 l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; __crypt_to64(p,l,4); p += 4;
142 l = final[11] ; __crypt_to64(p,l,2); p += 2;
crypt.h 28 crypt_private void __crypt_to64(char *, uint32_t, int);
pw_gensalt.c 92 __crypt_to64(&salt[0], arc4random(), 2);
117 __crypt_to64(&salt[1], (uint32_t)nrounds, 4);
118 __crypt_to64(&salt[5], arc4random(), 4);
134 __crypt_to64(&salt[3], arc4random(), 4);
135 __crypt_to64(&salt[7], arc4random(), 4);
157 __crypt_to64(&salt[n], arc4random(), 4);
158 __crypt_to64(&salt[n + 4], arc4random(), 4);
util.c 74 __crypt_to64(char *s, uint32_t v, int n) function
crypt-sha1.c 176 __crypt_to64(ep, ul, 4); ep += 4;
182 __crypt_to64(ep, ul, 4); ep += 4;

Completed in 33 milliseconds