diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-22 02:22:08 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-22 02:22:08 +0300 |
commit | 3c9296944d0b24942325f146f31eaa7dbd623de3 (patch) | |
tree | 2d39718cdc8383f959a6121742a88013bb53beb0 /src | |
parent | initial commit (diff) | |
download | aes-tools-3c9296944d0b24942325f146f31eaa7dbd623de3.tar.gz aes-tools-3c9296944d0b24942325f146f31eaa7dbd623de3.zip |
code style
Diffstat (limited to 'src')
-rw-r--r-- | src/aes192.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/aes192.asm b/src/aes192.asm index 84d3a3a..fd92426 100644 --- a/src/aes192.asm +++ b/src/aes192.asm @@ -137,15 +137,15 @@ gen_round_key: ; - ; RotWord(SubWord(x5)) * Rcon * x3 * x2 * x1 * x0 ; RotWord(SubWord(x5)) * Rcon * x3 * x2 * x1 * x0 - pxor xmm7, xmm2 ; xmm7 = - - ; - - ; RotWord(SubWord(x5)) * Rcon * x5 * x3 * x2 * x1 * x0 - ; RotWord(SubWord(x5)) * Rcon * x4 * x3 * x2 * x1 * x0 - pslldq xmm2, 4 ; xmm2 = - k5 k4 0 - pxor xmm7, xmm2 ; xmm7 = - - ; - - ; RotWord(SubWord(x5)) * Rcon * x5 * x4 * x3 * x2 * x1 * x0 - ; RotWord(SubWord(x5)) * Rcon * x4 * x3 * x2 * x1 * x0 + pxor xmm7, xmm2 ; xmm7 = - + ; - + ; RotWord(SubWord(x5)) * Rcon * x5 * x3 * x2 * x1 * x0 + ; RotWord(SubWord(x5)) * Rcon * x4 * x3 * x2 * x1 * x0 + pslldq xmm2, 4 ; xmm2 = - k5 k4 0 + pxor xmm7, xmm2 ; xmm7 = - + ; - + ; RotWord(SubWord(x5)) * Rcon * x5 * x4 * x3 * x2 * x1 * x0 + ; RotWord(SubWord(x5)) * Rcon * x4 * x3 * x2 * x1 * x0 movq xmm2, xmm7 pslldq xmm7, 8 |