Searched defs:msgByteCnt (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/crypto/skein/
H A Dskein.c158 Skein_256_Update(Skein_256_Ctxt_t *ctx, const uint8_t *msg, size_t msgByteCnt) argument
166 if (msgByteCnt + ctx->h.bCnt > SKEIN_256_BLOCK_BYTES) {
173 Skein_assert(n < msgByteCnt);
175 msgByteCnt -= n;
188 if (msgByteCnt > SKEIN_256_BLOCK_BYTES) {
190 n = (msgByteCnt - 1) / SKEIN_256_BLOCK_BYTES;
193 msgByteCnt -= n * SKEIN_256_BLOCK_BYTES;
200 if (msgByteCnt) {
201 Skein_assert(msgByteCnt + ctx->h.bCnt <= SKEIN_256_BLOCK_BYTES);
202 bcopy(msg, &ctx->b[ctx->h.bCnt], msgByteCnt);
394 Skein_512_Update(Skein_512_Ctxt_t *ctx, const uint8_t *msg, size_t msgByteCnt) argument
627 Skein1024_Update(Skein1024_Ctxt_t *ctx, const uint8_t *msg, size_t msgByteCnt) argument
[all...]

Completed in 56 milliseconds