diff options
Diffstat (limited to 'ot_rijndael.h')
| -rw-r--r-- | ot_rijndael.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ot_rijndael.h b/ot_rijndael.h index 7f57b3f..54725dc 100644 --- a/ot_rijndael.h +++ b/ot_rijndael.h | |||
| @@ -9,12 +9,14 @@ | |||
| 9 | 9 | ||
| 10 | $id$ */ | 10 | $id$ */ |
| 11 | 11 | ||
| 12 | #ifndef __OT_RIJNDAEL_H__ | 12 | #ifndef OT_RIJNDAEL_H__ |
| 13 | #define __OT_RIJNDAEL_H__ | 13 | #define OT_RIJNDAEL_H__ |
| 14 | 14 | ||
| 15 | #include <stdint.h> | 15 | #include <stdint.h> |
| 16 | 16 | ||
| 17 | int rijndaelKeySetupEnc128(uint32_t rk[44], const uint8_t cipherKey[] ); | 17 | int rijndaelKeySetupEnc128(uint32_t rk[44], const uint8_t cipherKey[] ); |
| 18 | void rijndaelEncrypt128(const uint32_t rk[44], const uint8_t pt[16], uint8_t ct[16]); | 18 | void rijndaelEncrypt128(const uint32_t rk[44], const uint8_t pt[16], uint8_t ct[16]); |
| 19 | 19 | ||
| 20 | extern const char *g_version_rijndael_c; | ||
| 21 | |||
| 20 | #endif | 22 | #endif |
