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
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marcus Hoffmann
nettle
Commits
bb34f1ed
Commit
bb34f1ed
authored
Oct 19, 2002
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Updated nettle_armor definitions.
Rev: src/nettle/nettle-meta.h:1.8
parent
eb28503d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
nettle-meta.h
+34
-18
34 additions, 18 deletions
nettle-meta.h
with
34 additions
and
18 deletions
nettle-meta.h
+
34
−
18
View file @
bb34f1ed
...
@@ -155,35 +155,51 @@ extern const struct nettle_hash nettle_sha1;
...
@@ -155,35 +155,51 @@ extern const struct nettle_hash nettle_sha1;
extern
const
struct
nettle_hash
nettle_sha256
;
extern
const
struct
nettle_hash
nettle_sha256
;
/* ASCII armor codecs */
/* ASCII armor codecs. NOTE: Experimental and subject to change. */
typedef
unsigned
(
*
nettle_armor_encode_func
)(
uint8_t
*
dst
,
unsigned
src_length
,
typedef
unsigned
(
*
nettle_armor_length_func
)(
unsigned
length
);
const
uint8_t
*
src
);
typedef
void
(
*
nettle_armor_init_func
)(
void
*
ctx
);
typedef
void
(
*
nettle_armor_init_func
)(
void
*
ctx
);
typedef
unsigned
(
*
nettle_armor_update_func
)(
void
*
ctx
,
typedef
unsigned
(
*
nettle_armor_update_func
)(
void
*
ctx
,
uint8_t
*
dst
,
uint8_t
*
dst
,
unsigned
src_length
,
unsigned
src_length
,
const
uint8_t
*
src
);
const
uint8_t
*
src
);
typedef
unsigned
(
*
nettle_armor_encode_final_func
)(
void
*
ctx
,
uint8_t
*
dst
);
typedef
int
(
*
nettle_armor_decode_status_func
)(
void
*
ctx
);
struct
nettle_armor
struct
nettle_armor
{
{
const
char
*
name
;
const
char
*
name
;
unsigned
context_size
;
unsigned
encode_context_size
;
unsigned
text_block_size
;
unsigned
decode_context_size
;
unsigned
binary_block_size
;
nettle_armor_encode_func
encode
;
unsigned
encode_final_length
;
nettle_armor_init_func
encode_init
;
nettle_armor_length_func
encode_length
;
nettle_armor_update_func
encode_update
;
nettle_armor_encode_final_func
encode_final
;
nettle_armor_init_func
decode_init
;
nettle_armor_init_func
decode_init
;
nettle_armor_length_func
decode_length
;
nettle_armor_update_func
decode_update
;
nettle_armor_update_func
decode_update
;
nettle_armor_decode_status_func
decode_status
;
};
};
#define _NETTLE_ARMOR(name, NAME) { \
#define _NETTLE_ARMOR(name, NAME) { \
#name, \
#name, \
sizeof(struct name##_ctx), \
sizeof(struct name##_encode_ctx), \
NAME##_TEXT_BLOCK_SIZE, \
sizeof(struct name##_decode_ctx), \
NAME##_BINARY_BLOCK_SIZE, \
NAME##_ENCODE_FINAL_LENGTH, \
(nettle_armor_encode_func) name##_encode, \
(nettle_armor_init_func) name##_encode_init, \
(nettle_armor_length_func) name##_encode_length, \
(nettle_armor_update_func) name##_encode_update, \
(nettle_armor_encode_final_func) name##_encode_final, \
(nettle_armor_init_func) name##_decode_init, \
(nettle_armor_init_func) name##_decode_init, \
(nettle_armor_update_func) name##_decode_update \
(nettle_armor_length_func) name##_decode_length, \
(nettle_armor_update_func) name##_decode_update, \
(nettle_armor_decode_status_func) name##_decode_status, \
}
}
extern
const
struct
nettle_armor
nettle_base64
;
extern
const
struct
nettle_armor
nettle_base64
;
...
...
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