Symbol: CBC_MODE
usr/src/common/crypto/aes/aes_modes.c
113
} else if (aes_ctx->ac_flags & (CBC_MODE|CMAC_MODE)) {
usr/src/common/crypto/aes/aes_modes.c
148
} else if (aes_ctx->ac_flags & CBC_MODE) {
usr/src/common/crypto/blowfish/blowfish_impl.c
740
if (blowfish_ctx->bc_flags & CBC_MODE) {
usr/src/common/crypto/blowfish/blowfish_impl.c
761
if (blowfish_ctx->bc_flags & CBC_MODE) {
usr/src/common/crypto/des/des_impl.c
1062
if (des_ctx->dc_flags & CBC_MODE) {
usr/src/common/crypto/des/des_impl.c
1071
if (des_ctx->dc_flags & CBC_MODE) {
usr/src/common/crypto/des/des_impl.c
1094
if (des_ctx->dc_flags & CBC_MODE) {
usr/src/common/crypto/des/des_impl.c
1105
if (des_ctx->dc_flags & CBC_MODE) {
usr/src/common/crypto/modes/cbc.c
318
cbc_ctx->cbc_flags |= CBC_MODE;
usr/src/common/crypto/modes/cbc.c
328
uint32_t modeval = mode & (CBC_MODE|CMAC_MODE);
usr/src/common/crypto/modes/cbc.c
331
VERIFY(modeval == CBC_MODE || modeval == CMAC_MODE);
usr/src/common/crypto/modes/cbc.c
347
return (cbc_cmac_alloc_ctx(kmflag, CBC_MODE));
usr/src/common/crypto/modes/modes.c
177
switch (common_ctx->cc_flags & (ECB_MODE|CBC_MODE|CMAC_MODE|CTR_MODE|
usr/src/common/crypto/modes/modes.c
187
case CBC_MODE:
usr/src/lib/pkcs11/pkcs11_softtoken/common/softAESCrypt.c
1696
} else if (ctx->ac_flags & (CBC_MODE|CMAC_MODE)) {
usr/src/lib/pkcs11/pkcs11_softtoken/common/softBlowfishCrypt.c
495
cbc_ctx->cbc_flags |= CBC_MODE;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softDESCrypt.c
804
cbc_ctx->cbc_flags |= CBC_MODE;
usr/src/lib/pkcs11/pkcs11_softtoken/common/softDESCrypt.c
806
cbc_ctx->cbc_flags |= CBC_MODE | DES3_STRENGTH;