Searched refs:SHA512_BLOCK_LENGTH (Results 1 – 6 of 6) sorted by relevance
55 #define SHA512_BLOCK_LENGTH 128 macro98 uint8_t buffer[SHA512_BLOCK_LENGTH];111 u_int8_t buffer[SHA512_BLOCK_LENGTH];
151 #define SHA512_SHORT_BLOCK_LENGTH (SHA512_BLOCK_LENGTH - 16)667 bzero(context->buffer, SHA512_BLOCK_LENGTH); in SHA512_Init()851 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Update()854 freespace = SHA512_BLOCK_LENGTH - usedspace; in SHA512_Update()872 while (len >= SHA512_BLOCK_LENGTH) { in SHA512_Update()875 ADDINC128(context->bitcount, SHA512_BLOCK_LENGTH << 3); in SHA512_Update()876 len -= SHA512_BLOCK_LENGTH; in SHA512_Update()877 data += SHA512_BLOCK_LENGTH; in SHA512_Update()891 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Last()905 if (usedspace < SHA512_BLOCK_LENGTH) { in SHA512_Last()[all …]
76 #define SHA512_BLOCK_LENGTH 128 /* bytes */ macro77 #define HASH_BLOCK_LENGTH_MAX SHA512_BLOCK_LENGTH
1063 unsigned int todo = SHA512_BLOCK_LENGTH - inBuf;1069 if (inBuf + todo == SHA512_BLOCK_LENGTH)1074 while (inputLen >= SHA512_BLOCK_LENGTH) {1075 memcpy(B, input, SHA512_BLOCK_LENGTH);1076 input += SHA512_BLOCK_LENGTH;1077 inputLen -= SHA512_BLOCK_LENGTH;
100 #define SHA512_SHORT_BLOCK_LENGTH (SHA512_BLOCK_LENGTH - 16)599 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) in SHA512_Transform() argument657 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) in SHA512_Transform() argument740 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Update()743 freespace = SHA512_BLOCK_LENGTH - usedspace; in SHA512_Update()761 while (len >= SHA512_BLOCK_LENGTH) { in SHA512_Update()764 ADDINC128(context->bitcount, SHA512_BLOCK_LENGTH << 3); in SHA512_Update()765 len -= SHA512_BLOCK_LENGTH; in SHA512_Update()766 data += SHA512_BLOCK_LENGTH; in SHA512_Update()782 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Pad()[all …]
56 #define SHA512_BLOCK_LENGTH 128 macro70 u_int8_t buffer[SHA512_BLOCK_LENGTH];114 void SHA512_Transform(u_int64_t state[8], const u_int8_t [SHA512_BLOCK_LENGTH]);