Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ed25519-donna
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Bernd Paysan
ed25519-donna
Commits
9b9b25ed
Verified
Commit
9b9b25ed
authored
4 years ago
by
Bernd Paysan
Browse files
Options
Downloads
Patches
Plain Diff
Workaround gcc 10.x bug
parent
6b8c560d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#1558
passed
4 years ago
Stage: build
Changes
3
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
ed25519-donna-impl-base.h
+77
-6
77 additions, 6 deletions
ed25519-donna-impl-base.h
ed25519-donna.h
+1
-1
1 addition, 1 deletion
ed25519-donna.h
with
79 additions
and
8 deletions
configure.ac
+
1
−
1
View file @
9b9b25ed
## ExampleLib Example: an example of using Automake to link with a library
AC_INIT([ED25519], [3:1
1
], [bernd@net2o.de], [ed25519-donna],
AC_INIT([ED25519], [3:1
2
], [bernd@net2o.de], [ed25519-donna],
[http://keccak.noekeon.org/])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.10 -Wall no-define])
...
...
This diff is collapsed.
Click to expand it.
ed25519-donna-impl-base.h
+
77
−
6
View file @
9b9b25ed
This diff is collapsed.
Click to expand it.
ed25519-donna.h
+
1
−
1
View file @
9b9b25ed
...
...
@@ -64,7 +64,7 @@ typedef unsigned char hash_512bits[64];
/*
Timing safe memory compare
*/
static
inline
int
ed25519_verify
(
long
*
a
,
long
*
b
,
size_t
len
)
{
static
inline
int
ed25519_verify
(
const
long
*
a
,
const
long
*
b
,
size_t
len
)
{
long
diff
=
0
;
assert
(
len
==
32
);
switch
(
sizeof
(
long
))
{
...
...
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