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
5ae67c4b
Commit
5ae67c4b
authored
23 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
* des-compat.h: Added some prototypes.
Rev: src/nettle/des-compat.h:1.2
parent
c576914a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
des-compat.h
+48
-0
48 additions, 0 deletions
des-compat.h
with
48 additions
and
0 deletions
des-compat.h
+
48
−
0
View file @
5ae67c4b
...
@@ -30,4 +30,52 @@
...
@@ -30,4 +30,52 @@
* des_is_weak_key, plus the encryption functions (des_*_encrypt and
* des_is_weak_key, plus the encryption functions (des_*_encrypt and
* des_cbc_cksum) would be a pretty useful subset. */
* des_cbc_cksum) would be a pretty useful subset. */
#include
"des.h"
/* FIXME: Names collides with nettle, so we'll need some ugly symbol
* munging */
void
des_ecb3_encrypt
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
struct
des_ctx
*
k1
,
struct
des_ctx
*
k2
,
struct
des_ctx
*
k3
,
int
enc
);
uint32_t
des_cbc_cksum
(
const
uint8_t
*
src
,
uint8_t
dst
,
long
length
,
struct
des_ctx
*
ctx
,
uint8_t
*
iv
);
void
des_cbc_encrypt
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
length
,
struct
des_ctx
*
ctx
,
uint8_t
*
iv
,
int
enc
);
void
des_3cbc_encrypt
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
length
,
struct
des_ctx
*
k1
,
struct
des_ctx
*
k2
,
struct
des_ctx
*
k3
,
/* What mode is this, two iv:s? */
uint8_t
*
iv1
,
uint8_t
*
iv2
,
int
enc
);
void
des_ecb_encrypt
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
length
,
struct
des_ctx
*
ctx
,
uint8_t
*
iv
,
int
enc
);
void
des_ede3_cbc_encrypt
(
const
uint8_t
*
src
,
uint8_t
*
dst
,
long
length
,
struct
des_ctx
*
k1
,
struct
des_ctx
*
k2
,
struct
des_ctx
*
k3
,
uint8_t
*
iv
,
int
enc
);
int
des_set_odd_parity
(
uint8_t
*
key
);
int
des_set_key
(
const
uint8_t
*
key
,
struct
des_ctx
*
ctx
);
int
des_key_sched
(
const
uint8_t
*
key
,
struct
des_ctx
*
ctx
);
int
des_is_weak_key
(
const
uint8_t
key
);
#endif
/* NETTLE_DES_COMPAT_H_INCLUDED */
#endif
/* NETTLE_DES_COMPAT_H_INCLUDED */
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