Searched refs:b64_from_24bit (Results 1 – 2 of 2) sorted by relevance
/PHP-8.0/ext/standard/ |
H A D | crypt_sha512.c | 562 #define b64_from_24bit(B2, B1, B0, N) \ in php_sha512_crypt_r() macro 574 b64_from_24bit(alt_result[0], alt_result[21], alt_result[42], 4); in php_sha512_crypt_r() 575 b64_from_24bit(alt_result[22], alt_result[43], alt_result[1], 4); in php_sha512_crypt_r() 576 b64_from_24bit(alt_result[44], alt_result[2], alt_result[23], 4); in php_sha512_crypt_r() 577 b64_from_24bit(alt_result[3], alt_result[24], alt_result[45], 4); in php_sha512_crypt_r() 578 b64_from_24bit(alt_result[25], alt_result[46], alt_result[4], 4); in php_sha512_crypt_r() 579 b64_from_24bit(alt_result[47], alt_result[5], alt_result[26], 4); in php_sha512_crypt_r() 580 b64_from_24bit(alt_result[6], alt_result[27], alt_result[48], 4); in php_sha512_crypt_r() 581 b64_from_24bit(alt_result[28], alt_result[49], alt_result[7], 4); in php_sha512_crypt_r() 582 b64_from_24bit(alt_result[50], alt_result[8], alt_result[29], 4); in php_sha512_crypt_r() [all …]
|
H A D | crypt_sha256.c | 527 #define b64_from_24bit(B2, B1, B0, N) \ in php_sha256_crypt_r() macro 539 b64_from_24bit(alt_result[0], alt_result[10], alt_result[20], 4); in php_sha256_crypt_r() 540 b64_from_24bit(alt_result[21], alt_result[1], alt_result[11], 4); in php_sha256_crypt_r() 541 b64_from_24bit(alt_result[12], alt_result[22], alt_result[2], 4); in php_sha256_crypt_r() 542 b64_from_24bit(alt_result[3], alt_result[13], alt_result[23], 4); in php_sha256_crypt_r() 543 b64_from_24bit(alt_result[24], alt_result[4], alt_result[14], 4); in php_sha256_crypt_r() 544 b64_from_24bit(alt_result[15], alt_result[25], alt_result[5], 4); in php_sha256_crypt_r() 545 b64_from_24bit(alt_result[6], alt_result[16], alt_result[26], 4); in php_sha256_crypt_r() 546 b64_from_24bit(alt_result[27], alt_result[7], alt_result[17], 4); in php_sha256_crypt_r() 547 b64_from_24bit(alt_result[18], alt_result[28], alt_result[8], 4); in php_sha256_crypt_r() [all …]
|
Completed in 13 milliseconds