mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
![]()
14 years ago
|
#ifndef H__RIJNDAEL
|
||
|
#define H__RIJNDAEL
|
||
|
|
||
|
int rijndaelSetupDecrypt(unsigned long *rk, const unsigned char *key,
|
||
|
int keybits);
|
||
|
void rijndaelDecrypt(const unsigned long *rk, int nrounds,
|
||
|
const unsigned char ciphertext[16], unsigned char plaintext[16]);
|
||
|
|
||
|
#define KEYLENGTH(keybits) ((keybits)/8)
|
||
|
#define RKLENGTH(keybits) ((keybits)/8+28)
|
||
|
#define NROUNDS(keybits) ((keybits)/32+6)
|
||
|
|
||
|
#endif
|
||
|
|