Home
last modified time | relevance | path

Searched refs:ecb_ctx (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/crypto/modes/
H A Decb.c143 ecb_ctx_t *ecb_ctx; in ecb_alloc_ctx() local
146 if ((ecb_ctx = kmem_zalloc(sizeof (ecb_ctx_t), kmflag)) == NULL) in ecb_alloc_ctx()
148 if ((ecb_ctx = calloc(1, sizeof (ecb_ctx_t))) == NULL) in ecb_alloc_ctx()
152 ecb_ctx->ecb_flags = ECB_MODE; in ecb_alloc_ctx()
153 return (ecb_ctx); in ecb_alloc_ctx()
H A Dmodes.h96 typedef struct ecb_ctx { struct