aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/aes128.asm
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-03 20:55:09 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-03 20:55:09 +0300
commit6b070da3e039d2ca7accae8489d8bc4a44ba652a (patch)
tree96fde3d04e1396cb5365d41991f3fc71498e964e /src/aes128.asm
parentadd FIPS-style block parsing functions (diff)
downloadaes-tools-6b070da3e039d2ca7accae8489d8bc4a44ba652a.tar.gz
aes-tools-6b070da3e039d2ca7accae8489d8bc4a44ba652a.zip
implement CBC wrappers in C
Diffstat (limited to '')
-rw-r--r--src/aes128.asm11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/aes128.asm b/src/aes128.asm
index 577e582..0153feb 100644
--- a/src/aes128.asm
+++ b/src/aes128.asm
@@ -23,11 +23,6 @@
ret
@raw_aes128ecb_encrypt@20 endp
-@raw_aes128cbc_encrypt@24 proc
- pxor xmm0, [edx]
- jmp @raw_aes128ecb_encrypt@20
-@raw_aes128cbc_encrypt@24 endp
-
@raw_aes128ecb_decrypt@20 proc
pxor xmm0, [ecx]
aesdec xmm0, [ecx + 10h]
@@ -43,12 +38,6 @@
ret
@raw_aes128ecb_decrypt@20 endp
-@raw_aes128cbc_decrypt@24 proc
- call @raw_aes128ecb_decrypt@20
- pxor xmm0, [edx]
- ret
-@raw_aes128cbc_decrypt@24 endp
-
@raw_aes128_expand_key_schedule@20 proc
; A "word" (in terms of the FIPS 187 standard) is a 32-bit block.
; Words are denoted by `w[N]`.