Searched refs:SHA256_BLOCK_SIZE (Results 1 – 5 of 5) sorted by relevance
23 const u8 data[SHA256_BLOCK_SIZE]) in sha256_process() argument115 fill = (u16)(SHA256_BLOCK_SIZE - left); in sha256_update()128 while (remain_ilen >= SHA256_BLOCK_SIZE) { in sha256_update()130 data_ptr += SHA256_BLOCK_SIZE; in sha256_update()131 remain_ilen -= SHA256_BLOCK_SIZE; in sha256_update()148 u8 last_padded_block[2 * SHA256_BLOCK_SIZE]; in sha256_final()158 block_present = (ctx->sha256_total % SHA256_BLOCK_SIZE); in sha256_final()169 if (block_present > (SHA256_BLOCK_SIZE - 1 - sizeof(u64))) { in sha256_final()172 (2 * SHA256_BLOCK_SIZE) - sizeof(u64)); in sha256_final()174 ret = sha256_process(ctx, last_padded_block + SHA256_BLOCK_SIZE); EG(ret, err); in sha256_final()[all …]
154 if (md->curlen == 0 && inlen >= SHA256_BLOCK_SIZE) { in sha256_process()157 md->length += SHA256_BLOCK_SIZE * 8; in sha256_process()158 in += SHA256_BLOCK_SIZE; in sha256_process()159 inlen -= SHA256_BLOCK_SIZE; in sha256_process()161 n = MIN(inlen, (SHA256_BLOCK_SIZE - md->curlen)); in sha256_process()166 if (md->curlen == SHA256_BLOCK_SIZE) { in sha256_process()169 md->length += 8 * SHA256_BLOCK_SIZE; in sha256_process()203 while (md->curlen < SHA256_BLOCK_SIZE) { in sha256_done()
12 #define SHA256_BLOCK_SIZE 64 macro17 u8 buf[SHA256_BLOCK_SIZE];
27 #define SHA256_BLOCK_SIZE 64 macro51 #if (MAX_BLOCK_SIZE < SHA256_BLOCK_SIZE)53 #define MAX_BLOCK_SIZE SHA256_BLOCK_SIZE66 u8 sha256_buffer[SHA256_BLOCK_SIZE];
56 #ifdef SHA256_BLOCK_SIZE277 .block_size = SHA256_BLOCK_SIZE,