Home
last modified time | relevance | path

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

/third_party/musl/src/crypt/
Dcrypt_sha512.c180 static char *to64(char *s, unsigned int u, int n) in to64() function
327 for (i=0; i<21; i++) p = to64(p, in sha512crypt()
330 p = to64(p, (md[0]<<16)|(md[21]<<8)|md[42], 4); in sha512crypt()
331 p = to64(p, (md[22]<<16)|(md[43]<<8)|md[1], 4); in sha512crypt()
332 p = to64(p, (md[44]<<16)|(md[2]<<8)|md[23], 4); in sha512crypt()
333 p = to64(p, (md[3]<<16)|(md[24]<<8)|md[45], 4); in sha512crypt()
334 p = to64(p, (md[25]<<16)|(md[46]<<8)|md[4], 4); in sha512crypt()
335 p = to64(p, (md[47]<<16)|(md[5]<<8)|md[26], 4); in sha512crypt()
336 p = to64(p, (md[6]<<16)|(md[27]<<8)|md[48], 4); in sha512crypt()
337 p = to64(p, (md[28]<<16)|(md[49]<<8)|md[7], 4); in sha512crypt()
[all …]
Dcrypt_sha256.c159 static char *to64(char *s, unsigned int u, int n) in to64() function
301 for (i=0; i<10; i++) p = to64(p, in sha256crypt()
303 p = to64(p, (md[31]<<8)|md[30], 3); in sha256crypt()
Dcrypt_md5.c188 static char *to64(char *s, unsigned int u, int n) in to64() function
263 for (i=0; i<5; i++) p = to64(p, in md5crypt()
265 p = to64(p, md[11], 2); in md5crypt()