Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Wim Lewis
nettle
Commits
64fbd2f0
Commit
64fbd2f0
authored
May 15, 2013
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New asm directory arm/v6. Moved aes functions using the uxtb instruction there.
parent
2ec13188
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
2 deletions
+15
-2
ChangeLog
ChangeLog
+9
-0
arm/v6/aes-decrypt-internal.asm
arm/v6/aes-decrypt-internal.asm
+0
-0
arm/v6/aes-encrypt-internal.asm
arm/v6/aes-encrypt-internal.asm
+0
-0
configure.ac
configure.ac
+6
-2
No files found.
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>
2013-05-03 Niels Möller <nisse@lysator.liu.se>
* cast128.c: Adapt to new struct cast128_ctx.
* 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
...
@@ -237,14 +237,18 @@ if test "x$enable_assembler" = xyes ; then
asm_path=sparc32
asm_path=sparc32
fi
fi
;;
;;
arm*)
arm
v6* | armv7
*)
NETTLE_CHECK_ARM_NEON
NETTLE_CHECK_ARM_NEON
asm_path=arm
asm_path="arm/v6 arm"
if test "x$enable_arm_neon" = xyes ; then
if test "x$enable_arm_neon" = xyes ; then
asm_path="arm/neon $asm_path"
asm_path="arm/neon $asm_path"
fi
fi
;;
;;
arm*)
asm_path=arm
;;
*)
*)
enable_assembler=no
enable_assembler=no
;;
;;
...
...
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