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
Brian Smith
nettle
Commits
64fbd2f0
Commit
64fbd2f0
authored
May 15, 2013
by
Niels Möller
Browse files
New asm directory arm/v6. Moved aes functions using the uxtb instruction there.
parent
2ec13188
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
64fbd2f0
2013-05-15 Niels Möller <nisse@lysator.liu.se>
* configure.ac (asm_path): Handle armv6 and armv7 differently from
older ARMs. Add the arm/v6 directory to asm_path when appropriate.
* arm/v6/aes-encrypt-internal.asm: Moved into v6 directory. Uses
the uxtb instruction which is not available for older ARMs.
* arm/v6/aes-decrypt-internal.asm: Likewise.
2013-05-03 Niels Möller <nisse@lysator.liu.se>
* cast128.c: Adapt to new struct cast128_ctx.
...
...
arm/aes-decrypt-internal.asm
→
arm/
v6/
aes-decrypt-internal.asm
View file @
64fbd2f0
File moved
arm/aes-encrypt-internal.asm
→
arm/
v6/
aes-encrypt-internal.asm
View file @
64fbd2f0
File moved
configure.ac
View file @
64fbd2f0
...
...
@@ -237,14 +237,18 @@ if test "x$enable_assembler" = xyes ; then
asm_path=sparc32
fi
;;
arm*)
arm
v6* | armv7
*)
NETTLE_CHECK_ARM_NEON
asm_path=arm
asm_path="arm/v6 arm"
if test "x$enable_arm_neon" = xyes ; then
asm_path="arm/neon $asm_path"
fi
;;
arm*)
asm_path=arm
;;
*)
enable_assembler=no
;;
...
...
Write
Preview
Supports
Markdown
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