Home
last modified time | relevance | path

Searched refs:buf_un (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/common/crypto/md5/
H A Dmd5.c294 bcopy(input, &ctx->buf_un.buf8[buf_index], buf_len); in MD5Update()
299 ctx->buf_un.buf8); in MD5Update()
301 md5_block_asm_host_order(ctx, ctx->buf_un.buf8, 1); in MD5Update()
343 bcopy(&input[i], &ctx->buf_un.buf8[buf_index], input_len - i); in MD5Update()
468 bcopy(block, ctx->buf_un.buf32, sizeof (ctx->buf_un.buf32)); in MD5Transform()
471 x_15 = LOAD_LITTLE_32_f(ctx->buf_un.buf32); in MD5Transform()
472 x_14 = LOAD_LITTLE_32_e(ctx->buf_un.buf32); in MD5Transform()
473 x_13 = LOAD_LITTLE_32_d(ctx->buf_un.buf32); in MD5Transform()
474 x_12 = LOAD_LITTLE_32_c(ctx->buf_un.buf32); in MD5Transform()
475 x_11 = LOAD_LITTLE_32_b(ctx->buf_un.buf32); in MD5Transform()
[all …]
/illumos-gate/usr/src/common/crypto/sha1/
H A Dsha1.c248 bcopy(input, &ctx->buf_un.buf8[buf_index], buf_len); in SHA1Update()
251 ctx->buf_un.buf32, in SHA1Update()
254 SHA1_TRANSFORM(ctx, ctx->buf_un.buf8); in SHA1Update()
334 bcopy(&input[i], &ctx->buf_un.buf8[buf_index], input_len - i); in SHA1Update()
388 bcopy(input, &ctx->buf_un.buf8[buf_index], buf_len); in SHA1Update()
389 SHA1_TRANSFORM(ctx, ctx->buf_un.buf8); in SHA1Update()
419 bcopy(&input[i], &ctx->buf_un.buf8[buf_index], input_len - i); in SHA1Update()
605 bcopy(blk, ctx->buf_un.buf32, sizeof (ctx->buf_un.buf32));
606 w_15 = LOAD_BIG_32(ctx->buf_un.buf32 + 15);
607 w_14 = LOAD_BIG_32(ctx->buf_un.buf32 + 14);
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dmd5.h59 } buf_un; member
H A Dsha1.h48 } buf_un; member
H A Dsha2.h86 } buf_un; member
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c201 bcopy(blk, ctx->buf_un.buf32, sizeof (ctx->buf_un.buf32)); in SHA256Transform()
202 blk = (uint8_t *)ctx->buf_un.buf32; in SHA256Transform()
417 bcopy(blk, ctx->buf_un.buf64, sizeof (ctx->buf_un.buf64)); in SHA512Transform()
418 blk = (uint8_t *)ctx->buf_un.buf64; in SHA512Transform()
857 bcopy(input, &ctx->buf_un.buf8[buf_index], buf_len); in SHA2Update()
859 SHA256Transform(ctx, ctx->buf_un.buf8); in SHA2Update()
861 SHA512Transform(ctx, ctx->buf_un.buf8); in SHA2Update()
910 bcopy(&input[i], &ctx->buf_un.buf8[buf_index], input_len - i); in SHA2Update()