aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/aes192.asm
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-05 02:09:07 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-05 02:09:07 +0300
commitf03495351c34315d30cc8566d1ef3884baa29d6b (patch)
treed0fb61f3dc480c529128f7727f3c06d5b4aa203f /src/aes192.asm
parentallow to choose between C in asm implementations (diff)
downloadaes-tools-f03495351c34315d30cc8566d1ef3884baa29d6b.tar.gz
aes-tools-f03495351c34315d30cc8566d1ef3884baa29d6b.zip
refactoring
Diffstat (limited to 'src/aes192.asm')
-rw-r--r--src/aes192.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/aes192.asm b/src/aes192.asm
index 6851ae1..a437801 100644
--- a/src/aes192.asm
+++ b/src/aes192.asm
@@ -8,7 +8,7 @@
.code
-@raw_aes192ecb_encrypt@20 proc
+@raw_aes192_encrypt@20 proc
pxor xmm0, [ecx]
aesenc xmm0, [ecx + 10h]
aesenc xmm0, [ecx + 20h]
@@ -23,9 +23,9 @@
aesenc xmm0, [ecx + 0B0h]
aesenclast xmm0, [ecx + 0C0h]
ret
-@raw_aes192ecb_encrypt@20 endp
+@raw_aes192_encrypt@20 endp
-@raw_aes192ecb_decrypt@20 proc
+@raw_aes192_decrypt@20 proc
pxor xmm0, [ecx]
aesdec xmm0, [ecx + 10h]
aesdec xmm0, [ecx + 20h]
@@ -40,7 +40,7 @@
aesdec xmm0, [ecx + 0B0h]
aesdeclast xmm0, [ecx + 0C0h]
ret
-@raw_aes192ecb_decrypt@20 endp
+@raw_aes192_decrypt@20 endp
@raw_aes192_expand_key_schedule@36 proc
; A "word" (in terms of the FIPS 187 standard) is a 32-bit block.