Searched refs:cbc_ctx (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/common/crypto/modes/ |
H A D | cbc.c | 299 cbc_init_ctx(cbc_ctx_t *cbc_ctx, char *param, size_t param_len, in cbc_init_ctx() argument 314 copy_block((uchar_t *)param, cbc_ctx->cbc_iv); in cbc_init_ctx() 317 cbc_ctx->cbc_lastp = (uint8_t *)&cbc_ctx->cbc_iv[0]; in cbc_init_ctx() 318 cbc_ctx->cbc_flags |= CBC_MODE; in cbc_init_ctx() 319 cbc_ctx->max_remain = block_size; in cbc_init_ctx() 327 cbc_ctx_t *cbc_ctx; in cbc_cmac_alloc_ctx() local 334 if ((cbc_ctx = kmem_zalloc(sizeof (cbc_ctx_t), kmflag)) == NULL) in cbc_cmac_alloc_ctx() 336 if ((cbc_ctx = calloc(1, sizeof (cbc_ctx_t))) == NULL) in cbc_cmac_alloc_ctx() 340 cbc_ctx->cbc_flags = mode; in cbc_cmac_alloc_ctx() 341 return (cbc_ctx); in cbc_cmac_alloc_ctx() [all …]
|
H A D | modes.h | 113 typedef struct cbc_ctx { struct
|
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
H A D | softBlowfishCrypt.c | 484 cbc_ctx_t *cbc_ctx; in blowfish_cbc_ctx_init() local 486 if ((cbc_ctx = calloc(1, sizeof (cbc_ctx_t))) == NULL) in blowfish_cbc_ctx_init() 489 cbc_ctx->cbc_keysched = key_sched; in blowfish_cbc_ctx_init() 491 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, BLOWFISH_BLOCK_LEN); in blowfish_cbc_ctx_init() 493 cbc_ctx->cbc_lastp = (uint8_t *)&(cbc_ctx->cbc_iv); in blowfish_cbc_ctx_init() 494 cbc_ctx->cbc_keysched_len = size; in blowfish_cbc_ctx_init() 495 cbc_ctx->cbc_flags |= CBC_MODE; in blowfish_cbc_ctx_init() 497 return (cbc_ctx); in blowfish_cbc_ctx_init()
|
H A D | softDESCrypt.c | 792 cbc_ctx_t *cbc_ctx; in des_cbc_ctx_init() local 794 if ((cbc_ctx = calloc(1, sizeof (cbc_ctx_t))) == NULL) in des_cbc_ctx_init() 797 cbc_ctx->cbc_keysched = key_sched; in des_cbc_ctx_init() 799 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, DES_BLOCK_LEN); in des_cbc_ctx_init() 801 cbc_ctx->cbc_lastp = (uint8_t *)&cbc_ctx->cbc_iv[0]; in des_cbc_ctx_init() 802 cbc_ctx->cbc_keysched_len = size; in des_cbc_ctx_init() 804 cbc_ctx->cbc_flags |= CBC_MODE; in des_cbc_ctx_init() 806 cbc_ctx->cbc_flags |= CBC_MODE | DES3_STRENGTH; in des_cbc_ctx_init() 808 return (cbc_ctx); in des_cbc_ctx_init()
|