From bc7e793359957e5553bb0268cdd1e53d69a56be2 Mon Sep 17 00:00:00 2001 From: Igor Kotrasinski Date: Mon, 23 Apr 2018 10:34:09 +0200 Subject: [PATCH] Remove test printing code in CC_API.c Change-Id: Ib97d136c6dae0803cb3de91587d1322024a1ee68 Signed-off-by: Igor Kotrasinski --- ssflib/dep/cryptocore/source/CC_API.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ssflib/dep/cryptocore/source/CC_API.c b/ssflib/dep/cryptocore/source/CC_API.c index bdee2b5..36d95c1 100644 --- a/ssflib/dep/cryptocore/source/CC_API.c +++ b/ssflib/dep/cryptocore/source/CC_API.c @@ -128,8 +128,6 @@ CryptoCoreContainer *create_CryptoCoreContainer(cc_u32 algorithm) crt->ECDH_Gen1stPhaseKey = NULL; crt->ECDH_GenAuthKey = NULL; - printf("TEST!!! step 1 in create_CryptoCoreContainer(%d)\n", algorithm); - // allocate memory for context data structure // and set up the member functions according to the algorithm crt->alg = algorithm; @@ -407,14 +405,6 @@ CryptoCoreContainer *create_CryptoCoreContainer(cc_u32 algorithm) return NULL; } - printf("TEST!!! after in create_CryptoCoreContainer(%p %d)\n", crt, ID_AES128); - printf("TEST!!! after in create_CryptoCoreContainer(%p)\n", crt->SE_init); - /* crt->SE_init = SDRM_AES_init; - crt->SE_process = SDRM_AES_process; - crt->SE_final = SDRM_AES_final; - crt->SE_EncryptOneBlock = SDRM_AES128_Encryption; - crt->SE_DecryptOneBlock = SDRM_AES128_Decryption;*/ - return crt; } -- 2.34.1