diff options
author | rsc <devnull@localhost> | 2003-11-25 02:11:11 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-25 02:11:11 +0000 |
commit | 64bcfff3a12695f4e3f54b0590e896611da71c3b (patch) | |
tree | 4069bf27ba50ec5fa81e1ca201fc38cf3cb496be /src/libsec | |
parent | f7012583e9a7594cbb5ebe8e974bb69061189262 (diff) | |
download | plan9port-64bcfff3a12695f4e3f54b0590e896611da71c3b.tar.gz plan9port-64bcfff3a12695f4e3f54b0590e896611da71c3b.tar.bz2 plan9port-64bcfff3a12695f4e3f54b0590e896611da71c3b.zip |
More tweaks on Linux and Solaris.
Diffstat (limited to 'src/libsec')
-rw-r--r-- | src/libsec/port/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsec/port/aes.c b/src/libsec/port/aes.c index ac1cac21..fce96fd3 100644 --- a/src/libsec/port/aes.c +++ b/src/libsec/port/aes.c @@ -43,7 +43,7 @@ static const u32 Td3[256]; static const u8 Te4[256]; static int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); -static int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); +// static int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits); 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]); |