Searched refs:SHA512_BLOCK_LENGTH (Results 1 – 5 of 5) sorted by relevance
105 #define SHA512_SHORT_BLOCK_LENGTH (SHA512_BLOCK_LENGTH - 16)604 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) in SHA512_Transform() argument662 SHA512_Transform(u_int64_t state[8], const u_int8_t data[SHA512_BLOCK_LENGTH]) in SHA512_Transform() argument745 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Update()748 freespace = SHA512_BLOCK_LENGTH - usedspace; in SHA512_Update()766 while (len >= SHA512_BLOCK_LENGTH) { in SHA512_Update()769 ADDINC128(context->bitcount, SHA512_BLOCK_LENGTH << 3); in SHA512_Update()770 len -= SHA512_BLOCK_LENGTH; in SHA512_Update()771 data += SHA512_BLOCK_LENGTH; in SHA512_Update()787 usedspace = (context->bitcount[0] >> 3) % SHA512_BLOCK_LENGTH; in SHA512_Pad()[all …]
62 #define SHA512_BLOCK_LENGTH 128 macro76 u_int8_t buffer[SHA512_BLOCK_LENGTH];116 void SHA512_Transform(u_int64_t state[8], const u_int8_t [SHA512_BLOCK_LENGTH]);
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 …]
114 SHA512_BLOCK_LENGTH,