From 8b8f1c4831d065552cb8ce1467f67dc13d5d87cc Mon Sep 17 00:00:00 2001 From: irgendsontyp Date: Wed, 20 Jun 2018 03:26:05 +0200 Subject: [PATCH] Fix creation of CA Client type 'AES128 ECB Constant Code Word' --- src/descrambler/caclient.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/descrambler/caclient.c b/src/descrambler/caclient.c index 776a33de4..eb387eb99 100644 --- a/src/descrambler/caclient.c +++ b/src/descrambler/caclient.c @@ -120,7 +120,8 @@ caclient_create #if ENABLE_CONSTCW if (c == &caclient_ccw_csa_cbc_class || c == &caclient_ccw_des_ncb_class || - c == &caclient_ccw_aes_ecb_class) + c == &caclient_ccw_aes_ecb_class || + c == &caclient_ccw_aes128_ecb_class) cac = constcw_create(); #endif if (cac == NULL) { -- 2.47.2