diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-03 20:55:09 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-03 20:55:09 +0300 |
commit | 6b070da3e039d2ca7accae8489d8bc4a44ba652a (patch) | |
tree | 96fde3d04e1396cb5365d41991f3fc71498e964e /src/aes128.asm | |
parent | add FIPS-style block parsing functions (diff) | |
download | aes-tools-6b070da3e039d2ca7accae8489d8bc4a44ba652a.tar.gz aes-tools-6b070da3e039d2ca7accae8489d8bc4a44ba652a.zip |
implement CBC wrappers in C
Diffstat (limited to 'src/aes128.asm')
-rw-r--r-- | src/aes128.asm | 11 |
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]`. |