Symbol: GOSTR34_11_94_BLOCK_SIZE
crypto/libecc/src/examples/hash/gostr34_11_94.c
325
const u8 data[GOSTR34_11_94_BLOCK_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
335
for(i = 0; i < GOSTR34_11_94_BLOCK_SIZE; i++){
crypto/libecc/src/examples/hash/gostr34_11_94.c
336
((u8*)M)[i] = data[GOSTR34_11_94_BLOCK_SIZE - i - 1];
crypto/libecc/src/examples/hash/gostr34_11_94.c
339
for(i = 0; i < GOSTR34_11_94_BLOCK_SIZE; i++){
crypto/libecc/src/examples/hash/gostr34_11_94.c
340
((u8*)H)[i] = ((u8*)ctx->gostr34_11_94_state)[GOSTR34_11_94_BLOCK_SIZE - i - 1];
crypto/libecc/src/examples/hash/gostr34_11_94.c
466
fill = (u16)(GOSTR34_11_94_BLOCK_SIZE - left);
crypto/libecc/src/examples/hash/gostr34_11_94.c
479
while (remain_ilen >= GOSTR34_11_94_BLOCK_SIZE) {
crypto/libecc/src/examples/hash/gostr34_11_94.c
481
data_ptr += GOSTR34_11_94_BLOCK_SIZE;
crypto/libecc/src/examples/hash/gostr34_11_94.c
482
remain_ilen -= GOSTR34_11_94_BLOCK_SIZE;
crypto/libecc/src/examples/hash/gostr34_11_94.c
499
u8 last_padded_block[2 * GOSTR34_11_94_BLOCK_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.c
509
block_present = ctx->gostr34_11_94_total % GOSTR34_11_94_BLOCK_SIZE;
crypto/libecc/src/examples/hash/gostr34_11_94.c
515
PUT_UINT64_LE(8 * ctx->gostr34_11_94_total, last_padded_block, GOSTR34_11_94_BLOCK_SIZE);
crypto/libecc/src/examples/hash/gostr34_11_94.c
536
ret = gostr34_11_94_process(ctx, last_padded_block + GOSTR34_11_94_BLOCK_SIZE); EG(ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.h
146
u8 gostr34_11_94_buffer[GOSTR34_11_94_BLOCK_SIZE];
crypto/libecc/src/examples/hash/hash.c
216
(*block_size) = GOSTR34_11_94_BLOCK_SIZE;