From 456c812d9a28298d43ea369c7b7a10b07d5b9d9f Mon Sep 17 00:00:00 2001 From: Guillaume DIDIER Date: Tue, 29 Sep 2020 11:33:00 +0200 Subject: [PATCH] Fix Cyber Cobaye T Tables --- aes-t-tables/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aes-t-tables/src/main.rs b/aes-t-tables/src/main.rs index aef70e4..7f07565 100644 --- a/aes-t-tables/src/main.rs +++ b/aes-t-tables/src/main.rs @@ -452,7 +452,7 @@ const KEY2: [u8; 32] = [ // 00000000001cc080 r Te1 // 00000000001cbc80 r Te2 // 00000000001cb880 r Te3 -const TE_CYBER_COBAYE : [isize;4] = [0x1cc480, 0x1cc080, 0x1ccc80, 0x1cc880]; +const TE_CYBER_COBAYE : [isize;4] = [0x1cc480, 0x1cc080, 0x1cbc80, 0x1cb880]; const TE_CITRON_VERT : [isize; 4] = [0x1b5d40, 0x1b5940, 0x1b5540, 0x1b5140];