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
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitry Baryshkov
nettle
Commits
8d5a38a5
Commit
8d5a38a5
authored
Mar 14, 2015
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
New function memeql_sec.
parent
b175384e
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+6
-0
6 additions, 0 deletions
ChangeLog
ccm.c
+14
-1
14 additions, 1 deletion
ccm.c
with
20 additions
and
1 deletion
ChangeLog
+
6
−
0
View file @
8d5a38a5
2015-03-14 Niels Möller <nisse@diamant.hack.org>
* ccm.c (memeql_sec): New function, more side-channel silent than
memcmp.
(ccm_decrypt_message): Use it.
2015-03-12 Niels Möller <nisse@diamant.hack.org>
* base64.h (struct base64_encode_ctx): Micro optimization of
...
...
This diff is collapsed.
Click to expand it.
ccm.c
+
14
−
1
View file @
8d5a38a5
...
...
@@ -246,6 +246,19 @@ ccm_encrypt_message(const void *cipher, nettle_cipher_func *f,
ccm_digest
(
&
ctx
,
cipher
,
f
,
tlength
,
tag
);
}
/* FIXME: Should be made public, under some suitable name. */
static
int
memeql_sec
(
const
void
*
a
,
const
void
*
b
,
size_t
n
)
{
volatile
const
unsigned
char
*
ap
=
(
const
unsigned
char
*
)
a
;
volatile
const
unsigned
char
*
bp
=
(
const
unsigned
char
*
)
b
;
volatile
unsigned
char
d
;
size_t
i
;
for
(
d
=
i
=
0
;
i
<
n
;
i
++
)
d
|=
(
ap
[
i
]
^
bp
[
i
]);
return
d
==
0
;
}
int
ccm_decrypt_message
(
const
void
*
cipher
,
nettle_cipher_func
*
f
,
size_t
nlength
,
const
uint8_t
*
nonce
,
...
...
@@ -258,5 +271,5 @@ ccm_decrypt_message(const void *cipher, nettle_cipher_func *f,
ccm_update
(
&
ctx
,
cipher
,
f
,
alength
,
adata
);
ccm_decrypt
(
&
ctx
,
cipher
,
f
,
mlength
,
dst
,
src
);
ccm_digest
(
&
ctx
,
cipher
,
f
,
tlength
,
tag
);
return
(
mem
cmp
(
tag
,
src
+
mlength
,
tlength
)
==
0
)
;
return
mem
eql_sec
(
tag
,
src
+
mlength
,
tlength
);
}
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