Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brian Smith
nettle
Commits
64fbd2f0
Commit
64fbd2f0
authored
11 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
New asm directory arm/v6. Moved aes functions using the uxtb instruction there.
parent
2ec13188
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+9
-0
9 additions, 0 deletions
ChangeLog
arm/v6/aes-decrypt-internal.asm
+0
-0
0 additions, 0 deletions
arm/v6/aes-decrypt-internal.asm
arm/v6/aes-encrypt-internal.asm
+0
-0
0 additions, 0 deletions
arm/v6/aes-encrypt-internal.asm
configure.ac
+6
-2
6 additions, 2 deletions
configure.ac
with
15 additions
and
2 deletions
ChangeLog
+
9
−
0
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.
...
...
This diff is collapsed.
Click to expand it.
arm/aes-decrypt-internal.asm
→
arm/
v6/
aes-decrypt-internal.asm
+
0
−
0
View file @
64fbd2f0
File moved
This diff is collapsed.
Click to expand it.
arm/aes-encrypt-internal.asm
→
arm/
v6/
aes-encrypt-internal.asm
+
0
−
0
View file @
64fbd2f0
File moved
This diff is collapsed.
Click to expand it.
configure.ac
+
6
−
2
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
;;
;;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment