aboutsummaryrefslogtreecommitdiff
path: root/include/crypto/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto/aes.h')
-rw-r--r--include/crypto/aes.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/crypto/aes.h b/include/crypto/aes.h
index 709d4d2..381f24c 100644
--- a/include/crypto/aes.h
+++ b/include/crypto/aes.h
@@ -30,4 +30,11 @@ void AES_decrypt(const unsigned char *in, unsigned char *out,
extern const uint8_t AES_sbox[256];
extern const uint8_t AES_isbox[256];
+/*
+AES_Te0[x] = S [x].[02, 01, 01, 03];
+AES_Td0[x] = Si[x].[0e, 09, 0d, 0b];
+*/
+
+extern const uint32_t AES_Te0[256], AES_Td0[256];
+
#endif