diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2017-04-28 15:41:24 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2017-04-28 15:41:24 +0200 |
commit | d4598cc93017e4d7e71a6f854d389dcf6749e8df (patch) | |
tree | 58570553fb37f8534cd8fac4fe8964284548fb22 /ot_rijndael.h | |
parent | 0ebc0ed6a3e3b7acc9f9e338cc23cea5f4f22f61 (diff) |
Get rid of some warnings regarding header guards
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 |