Searched refs:to64 (Results 1 – 3 of 3) sorted by relevance
/third_party/musl/src/crypt/ |
D | crypt_sha512.c | 180 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 …]
|
D | crypt_sha256.c | 159 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()
|
D | crypt_md5.c | 188 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()
|