diff options
author | rsc <devnull@localhost> | 2004-12-28 01:45:05 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-12-28 01:45:05 +0000 |
commit | 22c7ebffdade6036f5b46347f6a6ca41023c6253 (patch) | |
tree | 78841d3f6de1a3231dcb9abf459136472a92bed5 /src/libsec/port | |
parent | 7ffc5208a82cd7339c125956a9702ac08c0ff2f4 (diff) | |
download | plan9port-22c7ebffdade6036f5b46347f6a6ca41023c6253.tar.gz plan9port-22c7ebffdade6036f5b46347f6a6ca41023c6253.tar.bz2 plan9port-22c7ebffdade6036f5b46347f6a6ca41023c6253.zip |
more little compile fixes
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]); |