Lines Matching refs:SHA256_BLOCK_LENGTH
103 #define SHA256_SHORT_BLOCK_LENGTH (SHA256_BLOCK_LENGTH - 8)
323 SHA256_Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH]) in SHA256_Transform() argument
381 SHA256_Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH]) in SHA256_Transform() argument
464 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; in SHA256_Update()
467 freespace = SHA256_BLOCK_LENGTH - usedspace; in SHA256_Update()
485 while (len >= SHA256_BLOCK_LENGTH) { in SHA256_Update()
488 context->bitcount += SHA256_BLOCK_LENGTH << 3; in SHA256_Update()
489 len -= SHA256_BLOCK_LENGTH; in SHA256_Update()
490 data += SHA256_BLOCK_LENGTH; in SHA256_Update()
506 usedspace = (context->bitcount >> 3) % SHA256_BLOCK_LENGTH; in SHA256_Pad()
516 if (usedspace < SHA256_BLOCK_LENGTH) { in SHA256_Pad()
518 SHA256_BLOCK_LENGTH - usedspace); in SHA256_Pad()