aboutsummaryrefslogtreecommitdiffstats
path: root/src/block
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-03-27 20:06:35 +0000
committerlloyd <[email protected]>2009-03-27 20:06:35 +0000
commit7097612ae6fafa2d9acc02d2c383e71c2d87af0c (patch)
tree0132cd64d52240606ae57b0d836887647ed9dc1b /src/block
parentd323e4f3b9536f9a359fb8590234339e9d1988d2 (diff)
Compile fix: missing a comma
Diffstat (limited to 'src/block')
-rw-r--r--src/block/gost_28147/gost_28147.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/gost_28147/gost_28147.cpp b/src/block/gost_28147/gost_28147.cpp
index ad57a2ca7..c8add16f6 100644
--- a/src/block/gost_28147/gost_28147.cpp
+++ b/src/block/gost_28147/gost_28147.cpp
@@ -16,7 +16,7 @@ GOST_28147_89::GOST_28147_89() : BlockCipher(8, 32)
// GostR3411_94_TestParamSet (OID 1.2.643.2.2.31.0)
const byte sbox[8][16] = {
- {0x4,0xA,0x9,0x2,0xD,0x8,0x0,0xE,0x6,0xB,0x1,0xC,0x7,0xF,0x5,0x3}
+ {0x4,0xA,0x9,0x2,0xD,0x8,0x0,0xE,0x6,0xB,0x1,0xC,0x7,0xF,0x5,0x3},
{0xE,0xB,0x4,0xC,0x6,0xD,0xF,0xA,0x2,0x3,0x8,0x1,0x0,0x7,0x5,0x9},
{0x5,0x8,0x1,0xD,0xA,0x3,0x4,0x2,0xE,0xF,0xC,0x7,0x6,0x0,0x9,0xB},
{0x7,0xD,0xA,0x1,0x0,0x8,0x9,0xF,0xE,0x4,0x6,0xC,0xB,0x2,0x5,0x3},