Symbol: sha2_hmac_ctx_t
usr/src/uts/common/crypto/io/sha2_mod.c
1033
bzero(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1034
kmem_free(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1108
bzero(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1109
kmem_free(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1161
bzero(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1162
kmem_free(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1296
bzero(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1297
kmem_free(ctx->cc_provider_private, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1331
sha2_hmac_ctx_t sha2_hmac_ctx;
usr/src/uts/common/crypto/io/sha2_mod.c
1362
bcopy(ctx_template, &sha2_hmac_ctx, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1459
bzero(&sha2_hmac_ctx, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1473
sha2_hmac_ctx_t sha2_hmac_ctx;
usr/src/uts/common/crypto/io/sha2_mod.c
1504
bcopy(ctx_template, &sha2_hmac_ctx, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1675
bzero(&sha2_hmac_ctx, sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
1691
sha2_hmac_ctx_t *sha2_hmac_ctx_tmpl;
usr/src/uts/common/crypto/io/sha2_mod.c
1723
sha2_hmac_ctx_tmpl = kmem_alloc(sizeof (sha2_hmac_ctx_t),
usr/src/uts/common/crypto/io/sha2_mod.c
1749
*ctx_template_size = sizeof (sha2_hmac_ctx_t);
usr/src/uts/common/crypto/io/sha2_mod.c
1776
ctx_len = sizeof (sha2_hmac_ctx_t);
usr/src/uts/common/crypto/io/sha2_mod.c
69
#define PROV_SHA2_HMAC_CTX(ctx) ((sha2_hmac_ctx_t *)(ctx)->cc_provider_private)
usr/src/uts/common/crypto/io/sha2_mod.c
900
sha2_mac_init_ctx(sha2_hmac_ctx_t *ctx, void *keyval, uint_t length_in_bytes)
usr/src/uts/common/crypto/io/sha2_mod.c
984
ctx->cc_provider_private = kmem_alloc(sizeof (sha2_hmac_ctx_t),
usr/src/uts/common/crypto/io/sha2_mod.c
993
sizeof (sha2_hmac_ctx_t));
usr/src/uts/common/crypto/io/sha2_mod.c
998
sha2_hmac_ctx_t *hmac_ctx = ctx->cc_provider_private;