Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
9b84223b
Commit
9b84223b
authored
May 15, 2002
by
Niels Möller
Browse files
(aes_decrypt): Use _aes_decrypt_table instead of isbox.
Rev: src/nettle/x86/aes.asm:1.10
parent
425ee6bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/nettle/x86/aes.asm
View file @
9b84223b
...
...
@@ -245,22 +245,22 @@ aes_decrypt:
.Lisubst:
movl
%
eax
,
%
ebp
andl
$
0x000000ff
,
%
ebp
movb
isbox
(
%
ebp
),
%
al
movb
AES_SBOX
+
_aes_decrypt_table
(
%
ebp
),
%
al
roll
$
8
,
%
eax
movl
%
ebx
,
%
ebp
andl
$
0x000000ff
,
%
ebp
movb
isbox
(
%
ebp
),
%
bl
movb
AES_SBOX
+
_aes_decrypt_table
(
%
ebp
),
%
bl
roll
$
8
,
%
ebx
movl
%
ecx
,
%
ebp
andl
$
0x000000ff
,
%
ebp
movb
isbox
(
%
ebp
),
%
cl
movb
AES_SBOX
+
_aes_decrypt_table
(
%
ebp
),
%
cl
roll
$
8
,
%
ecx
movl
%
edx
,
%
ebp
andl
$
0x000000ff
,
%
ebp
movb
isbox
(
%
ebp
),
%
dl
movb
AES_SBOX
+
_aes_decrypt_table
(
%
ebp
),
%
dl
roll
$
8
,
%
edx
decl
%
edi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment