aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/asm/aes128.asm
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-11 01:15:14 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-11 01:15:14 +0300
commit7c14e13c717c25818780ff4cc459d82a2ec0473a (patch)
treeb03d3b5149c43334052c1a4e423df9025544bdd5 /src/asm/aes128.asm
parentfix register usage in the asm implementation (diff)
downloadaes-tools-7c14e13c717c25818780ff4cc459d82a2ec0473a.tar.gz
aes-tools-7c14e13c717c25818780ff4cc459d82a2ec0473a.zip
refactoring
Diffstat (limited to 'src/asm/aes128.asm')
-rw-r--r--src/asm/aes128.asm16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/asm/aes128.asm b/src/asm/aes128.asm
index 874f876..4f88f09 100644
--- a/src/asm/aes128.asm
+++ b/src/asm/aes128.asm
@@ -8,7 +8,7 @@
.code
-@raw_aes128_encrypt_block@20 proc
+@aesni_raw_encrypt_block128@20 proc
pxor xmm0, [ecx]
aesenc xmm0, [ecx + 10h]
aesenc xmm0, [ecx + 20h]
@@ -21,9 +21,9 @@
aesenc xmm0, [ecx + 90h]
aesenclast xmm0, [ecx + 0A0h]
ret
-@raw_aes128_encrypt_block@20 endp
+@aesni_raw_encrypt_block128@20 endp
-@raw_aes128_decrypt_block@20 proc
+@aesni_raw_decrypt_block128@20 proc
pxor xmm0, [ecx]
aesdec xmm0, [ecx + 10h]
aesdec xmm0, [ecx + 20h]
@@ -36,9 +36,9 @@
aesdec xmm0, [ecx + 90h]
aesdeclast xmm0, [ecx + 0A0h]
ret
-@raw_aes128_decrypt_block@20 endp
+@aesni_raw_decrypt_block128@20 endp
-@raw_aes128_expand_key_schedule@20 proc
+@aesni_raw_expand_key_schedule128@20 proc
; A "word" (in terms of the FIPS 187 standard) is a 32-bit block.
; Words are denoted by `w[N]`.
;
@@ -165,9 +165,9 @@ aes128_keygen_assist:
add ecx, 10h ; ecx = &w[i+8]
ret
-@raw_aes128_expand_key_schedule@20 endp
+@aesni_raw_expand_key_schedule128@20 endp
-@raw_aes128_invert_key_schedule@8 proc
+@aesni_raw_invert_key_schedule128@8 proc
movdqa xmm5, [ecx]
movdqa xmm4, [ecx + 0A0h]
movdqa [edx], xmm4
@@ -197,6 +197,6 @@ aes128_keygen_assist:
movdqa [edx + 50h], xmm5
ret
-@raw_aes128_invert_key_schedule@8 endp
+@aesni_raw_invert_key_schedule128@8 endp
end