core/crypto/_aes/ct64: Add GHASH

This commit is contained in:
Yawning Angel
2024-06-01 22:55:42 +09:00
parent cba58924a8
commit 1ade62b630
2 changed files with 141 additions and 0 deletions
+5
View File
@@ -18,5 +18,10 @@ ROUNDS_192 :: 12
// ROUNDS_256 is the number of rounds for AES-256.
ROUNDS_256 :: 14
// GHASH_KEY_SIZE is the GHASH key size in bytes.
GHASH_KEY_SIZE :: 16
// GHASH_BLOCK_SIZE is the GHASH block size in bytes.
GHASH_BLOCK_SIZE :: 16
// RCON is the AES keyschedule round constants.
RCON := [10]byte{0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1B, 0x36}