Make things build on FreeBSD again.

This commit is contained in:
rsc 2003-11-23 20:04:53 +00:00
parent 1c253ceb58
commit 478ee9636f
8 changed files with 16 additions and 22 deletions

View file

@ -950,6 +950,7 @@ static int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int
return 0;
}
#if 0
/**
* Expand the cipher key into the decryption key schedule.
*
@ -994,6 +995,7 @@ static int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int
}
return Nr;
}
#endif
static void rijndaelEncrypt(const u32 rk[/*4*(Nr + 1)*/], int Nr, const u8 pt[16], u8 ct[16]) {
u32 s0, s1, s2, s3, t0, t1, t2, t3;

View file

@ -28,7 +28,6 @@
*/
static void encode(uchar*, u32int*, ulong);
static void decode(u32int*, uchar*, ulong);
extern void _md5block(uchar*, ulong, u32int*);