diff options
Diffstat (limited to 'src/add_threshold/tweakey.h')
| -rw-r--r-- | src/add_threshold/tweakey.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/add_threshold/tweakey.h b/src/add_threshold/tweakey.h index ca7bd49..6b5f52a 100644 --- a/src/add_threshold/tweakey.h +++ b/src/add_threshold/tweakey.h @@ -28,14 +28,14 @@ of Lilliput-TBC's tweakey schedule. #include "constants.h"
-void tweakey_state_init_TI(
+void tweakey_state_init(
uint8_t TK_X[TWEAKEY_BYTES],
uint8_t TK_Y[TWEAKEY_BYTES],
const uint8_t key[KEY_BYTES],
const uint8_t tweak[TWEAK_BYTES]
);
-void tweakey_state_extract_TI(
+void tweakey_state_extract(
const uint8_t TK_X[TWEAKEY_BYTES],
const uint8_t TK_Y[KEY_BYTES],
uint8_t round_constant,
@@ -43,7 +43,7 @@ void tweakey_state_extract_TI( uint8_t round_tweakey_Y[ROUND_TWEAKEY_BYTES]
);
-void tweakey_state_update_TI(uint8_t TK_X[TWEAKEY_BYTES], uint8_t TK_Y[KEY_BYTES]);
+void tweakey_state_update(uint8_t TK_X[TWEAKEY_BYTES], uint8_t TK_Y[KEY_BYTES]);
#endif /* TWEAKEY_H */
|
