Home
last modified time | relevance | path

Searched refs:bCnt (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/module/icp/algs/skein/
H A Dskein.c140 ctx->h.bCnt = 0; /* buffer b[] starts out empty */ in Skein_256_InitExt()
153 Skein_Assert(ctx->h.bCnt <= SKEIN_256_BLOCK_BYTES, SKEIN_FAIL); in Skein_256_Update()
156 if (msgByteCnt + ctx->h.bCnt > SKEIN_256_BLOCK_BYTES) { in Skein_256_Update()
158 if (ctx->h.bCnt) { in Skein_256_Update()
160 n = SKEIN_256_BLOCK_BYTES - ctx->h.bCnt; in Skein_256_Update()
164 memcpy(&ctx->b[ctx->h.bCnt], msg, n); in Skein_256_Update()
167 ctx->h.bCnt += n; in Skein_256_Update()
169 Skein_assert(ctx->h.bCnt == SKEIN_256_BLOCK_BYTES); in Skein_256_Update()
172 ctx->h.bCnt = 0; in Skein_256_Update()
186 Skein_assert(ctx->h.bCnt == 0); in Skein_256_Update()
[all …]
H A Dskein_port.h53 #define Skein_Put64_LSB_First(dst08, src64, bCnt) memcpy(dst08, src64, bCnt) argument
81 Skein_Put64_LSB_First(uint8_t *dst, const uint64_t *src, size_t bCnt) in Skein_Put64_LSB_First() argument
89 for (n = 0; n < bCnt; n++) in Skein_Put64_LSB_First()
H A Dskein_impl.h165 (ctxPtr)->h.bCnt = 0; \
/freebsd/sys/crypto/skein/
H A Dskein.c133 ctx->h.bCnt = 0; /* buffer b[] starts out empty */ in Skein_256_InitExt()
145 …Skein_Assert(ctx->h.bCnt <= SKEIN_256_BLOCK_BYTES,SKEIN_FAIL); /* catch uninitialized context */ in Skein_256_Update()
148 if (msgByteCnt + ctx->h.bCnt > SKEIN_256_BLOCK_BYTES) in Skein_256_Update()
150 if (ctx->h.bCnt) /* finish up any buffered message data */ in Skein_256_Update()
152 n = SKEIN_256_BLOCK_BYTES - ctx->h.bCnt; /* # bytes free in buffer b[] */ in Skein_256_Update()
156 memcpy(&ctx->b[ctx->h.bCnt],msg,n); in Skein_256_Update()
159 ctx->h.bCnt += n; in Skein_256_Update()
161 Skein_assert(ctx->h.bCnt == SKEIN_256_BLOCK_BYTES); in Skein_256_Update()
163 ctx->h.bCnt = 0; in Skein_256_Update()
173 Skein_assert(ctx->h.bCnt == 0); in Skein_256_Update()
[all …]
H A Dskein_port.h59 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt);
65 #define Skein_Put64_LSB_First(dst08,src64,bCnt) memcpy(dst08,src64,bCnt)
88 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt) in Skein_Put64_LSB_First() argument
93 for (n = 0; n < bCnt / 8; n++) in Skein_Put64_LSB_First()
H A Dskein.h69 size_t bCnt; /* current byte count in buffer b[] */ member
246 …Skein_Set_T0_T1(ctxPtr,0,SKEIN_T1_FLAG_FIRST | SKEIN_T1_BLK_TYPE_##BLK_TYPE); (ctxPtr)->h.bCnt=0; }
/freebsd/sys/contrib/openzfs/include/sys/
H A Dskein.h64 size_t bCnt; /* current byte count in buffer b[] */ member