diff options
Diffstat (limited to 'src/libsec/port')
-rw-r--r-- | src/libsec/port/aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsec/port/aes.c b/src/libsec/port/aes.c index cdcb9bb5..144aaf69 100644 --- a/src/libsec/port/aes.c +++ b/src/libsec/port/aes.c @@ -43,9 +43,9 @@ static const u32 Td3[256]; static const u8 Te4[256]; static int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); -/* +#ifdef NOTUSED static int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); -*/ +#endif static int rijndaelKeySetup(u32 erk[/*4*(Nr + 1)*/], u32 drk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); static void rijndaelEncrypt(const u32int rk[], int Nr, const uchar pt[16], uchar ct[16]); static void rijndaelDecrypt(const u32int rk[], int Nr, const uchar ct[16], uchar pt[16]); |