Symbol: sha2_word64
sys/crypto/sha2/sha2.c
153
sha2_word64 tmp = (w); \
sys/crypto/sha2/sha2.c
168
(w)[0] += (sha2_word64)(n); \
sys/crypto/sha2/sha2.c
213
void SHA512_Transform(SHA512_CTX*, const sha2_word64*);
sys/crypto/sha2/sha2.c
250
static const sha2_word64 K512[80] = {
sys/crypto/sha2/sha2.c
294
static const sha2_word64 sha384_initial_hash_value[8] = {
sys/crypto/sha2/sha2.c
306
static const sha2_word64 sha512_initial_hash_value[8] = {
sys/crypto/sha2/sha2.c
596
*(sha2_word64*)&context->buffer[SHA256_SHORT_BLOCK_LENGTH] = context->bitcount;
sys/crypto/sha2/sha2.c
698
void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) {
sys/crypto/sha2/sha2.c
699
sha2_word64 a, b, c, d, e, f, g, h, s0, s1;
sys/crypto/sha2/sha2.c
700
sha2_word64 T1 = 0, T2 = 0, *W512 = (sha2_word64*)context->buffer;
sys/crypto/sha2/sha2.c
753
void SHA512_Transform(SHA512_CTX* context, const sha2_word64* data) {
sys/crypto/sha2/sha2.c
754
sha2_word64 a, b, c, d, e, f, g, h, s0, s1;
sys/crypto/sha2/sha2.c
755
sha2_word64 T1, T2, *W512 = (sha2_word64*)context->buffer;
sys/crypto/sha2/sha2.c
853
SHA512_Transform(context, (sha2_word64*)context->buffer);
sys/crypto/sha2/sha2.c
865
SHA512_Transform(context, (const sha2_word64*)data);
sys/crypto/sha2/sha2.c
900
SHA512_Transform(context, (sha2_word64*)context->buffer);
sys/crypto/sha2/sha2.c
913
*(sha2_word64*)&context->buffer[SHA512_SHORT_BLOCK_LENGTH] = context->bitcount[1];
sys/crypto/sha2/sha2.c
914
*(sha2_word64*)&context->buffer[SHA512_SHORT_BLOCK_LENGTH+8] = context->bitcount[0];
sys/crypto/sha2/sha2.c
917
SHA512_Transform(context, (sha2_word64*)context->buffer);
sys/crypto/sha2/sha2.c
921
sha2_word64 *d = (sha2_word64*)digest;
sys/crypto/sha2/sha2.c
996
sha2_word64 *d = (sha2_word64*)digest;