Home
last modified time | relevance | path

Searched refs:SHA256_BLOCK_SIZE (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/libecc/src/hash/
H A Dsha256.c23 const u8 data[SHA256_BLOCK_SIZE]) in sha256_process() argument
115 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 …]
/freebsd/contrib/wpa/src/crypto/
H A Dsha256-internal.c154 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()
H A Dsha256_i.h12 #define SHA256_BLOCK_SIZE 64 macro
17 u8 buf[SHA256_BLOCK_SIZE];
/freebsd/crypto/libecc/include/libecc/hash/
H A Dsha256.h27 #define SHA256_BLOCK_SIZE 64 macro
51 #if (MAX_BLOCK_SIZE < SHA256_BLOCK_SIZE)
53 #define MAX_BLOCK_SIZE SHA256_BLOCK_SIZE
66 u8 sha256_buffer[SHA256_BLOCK_SIZE];
H A Dhash_algs.h56 #ifdef SHA256_BLOCK_SIZE
277 .block_size = SHA256_BLOCK_SIZE,