From 8bd6f50acc866443c804f56be5949bcd15c5d723 Mon Sep 17 00:00:00 2001 From: kubodera_yuichi Date: Tue, 22 Dec 2009 07:00:14 +0000 Subject: [PATCH] =?UTF-8?q?ifdef=E6=8A=9C=E3=81=91=E3=81=AE=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=20=E3=81=9D=E3=81=AE5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_eFuse@29 ff987cc8-cf2f-4642-8568-d52cce064691 --- cr_hsm_code.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/cr_hsm_code.c b/cr_hsm_code.c index fbb5567..a8d46b0 100644 --- a/cr_hsm_code.c +++ b/cr_hsm_code.c @@ -128,9 +128,7 @@ #include "rqcard-fips.h" // nShield optional #include "simplebignum.h" -#endif // USE_HSM -#ifdef USE_HSM // TORIAEZU : nFast variables NFast_AppHandle hsmHandle; NFastApp_Connection hsmConnection; @@ -145,18 +143,16 @@ M_ByteBlock *hsmBlobptr = NULL; M_KeyID hsmAeskeyid; const NFKM_KeyIdent hsmAeskeyident = { (char*)"simple", (char*)"aes-test-key" }; NFKM_Key *hsmAeskeyinfo = NULL; // allocate + +static int hsm_aes_load_key( void ); #else // !ENCRYPT_AES M_KeyID hsmRsaPrivkeyid, hsmRsaPubkeyid; const NFKM_KeyIdent hsmRsakeyident = { (char*)"simple", (char*)"rsa-priv-key-2048" }; NFKM_Key *hsmRsakeyinfo = NULL; // allocate -#endif // ENCRYPT_AES - -#endif // USE_HSM static int hsm_rsa_load_keypair( void ); -static int hsm_aes_load_key( void ); +#endif // ENCRYPT_AES -#ifdef USE_HSM // init HSM int hsm_initialize( void ) { @@ -326,7 +322,7 @@ int hsm_get_rtc( time_t *time ) return CR_GENID_SUCCESS; } // hsm_get_rtc -#ifdef ENCYRPT_AES +#ifdef ENCRYPT_AES int hsm_aes_load_key( void ) { @@ -492,7 +488,7 @@ int hsm_aes_decrypt( unsigned char *dst_buf, unsigned char *org_buf, int size ) return CR_GENID_SUCCESS; } // hsm_aes_decrypt -#else // !ENCRYPT_AES +#else !ENCRYPT_AES int hsm_rsa_load_keypair( void ) { @@ -749,6 +745,6 @@ int hsm_rsa_decrypt( unsigned char *dst_buf, unsigned char *org_buf, int size ) return CR_GENID_SUCCESS; } // hsm_rsa_decrypt -#endif // ENCRYPT_AES +#endif // !ENCRYPT_AES #endif // USE_HSM