Searched refs:cbc_iv (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/common/crypto/modes/
H A Dcbc.c69 lastp = (uint8_t *)ctx->cbc_iv;
157 copy_block((uint8_t *)ctx->cbc_lastp, (uint8_t *)ctx->cbc_iv);
158 ctx->cbc_lastp = (uint8_t *)ctx->cbc_iv;
165 (((a) == (ctx)->cbc_lastblock) ? (ctx)->cbc_iv : (ctx)->cbc_lastblock)
297 copy_block((uchar_t *)param, cbc_ctx->cbc_iv);
300 cbc_ctx->cbc_lastp = (uint8_t *)&cbc_ctx->cbc_iv[0];
H A Dmodes.h110 #define cbc_iv cbc_common.cc_iv macro
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftBlowfishCrypt.c498 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, BLOWFISH_BLOCK_LEN);
500 cbc_ctx->cbc_lastp = (uint8_t *)&(cbc_ctx->cbc_iv);
H A DsoftAESCrypt.c837 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, AES_BLOCK_LEN);
839 cbc_ctx->cbc_lastp = (uint8_t *)cbc_ctx->cbc_iv;
H A DsoftDESCrypt.c809 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, DES_BLOCK_LEN);
811 cbc_ctx->cbc_lastp = (uint8_t *)&cbc_ctx->cbc_iv[0];

Completed in 97 milliseconds