fold
This commit is contained in:
parent
2ebe3467f8
commit
f6bddfcd70
2
aead.h
2
aead.h
@ -23,4 +23,6 @@ struct lc_aead_impl {
|
||||
const uint8_t *, size_t);
|
||||
int (*open)(uint8_t *, size_t *, void *, const uint8_t *, size_t,
|
||||
const uint8_t *, size_t);
|
||||
|
||||
size_t blocklen;
|
||||
};
|
||||
|
@ -419,11 +419,15 @@ xchacha20_poly1305_open(uint8_t *out, size_t *outlen, void *initparams,
|
||||
static struct lc_aead_impl chacha20_poly1305_impl = {
|
||||
.seal = &chacha20_poly1305_seal,
|
||||
.open = &chacha20_poly1305_open,
|
||||
|
||||
.blocklen = LC_CHACHA20_BLOCKLEN,
|
||||
};
|
||||
|
||||
static struct lc_aead_impl xchacha20_poly1305_impl = {
|
||||
.seal = &xchacha20_poly1305_seal,
|
||||
.open = &xchacha20_poly1305_open,
|
||||
|
||||
.blocklen = LC_XCHACHA20_BLOCKLEN,
|
||||
};
|
||||
|
||||
const struct lc_aead_impl *
|
||||
|
3
auth.h
3
auth.h
@ -26,6 +26,9 @@ struct lc_auth_impl {
|
||||
|
||||
void *(*ctx_new)(void);
|
||||
void (*ctx_free)(void *);
|
||||
|
||||
size_t blocklen;
|
||||
size_t taglen;
|
||||
};
|
||||
|
||||
struct lc_auth_ctx {
|
||||
|
@ -165,6 +165,9 @@ static struct lc_auth_impl poly1305_impl = {
|
||||
|
||||
.ctx_new = &poly1305_ctx_new,
|
||||
.ctx_free = NULL,
|
||||
|
||||
.blocklen = LC_POLY1305_BLOCKLEN,
|
||||
.taglen = LC_POLY1305_TAGLEN,
|
||||
};
|
||||
|
||||
const struct lc_auth_impl *
|
||||
|
2
cipher.h
2
cipher.h
@ -35,6 +35,8 @@ struct lc_cipher_impl {
|
||||
|
||||
void *(*ctx_new)(void);
|
||||
void (*ctx_free)(void *);
|
||||
|
||||
size_t blocklen;
|
||||
};
|
||||
|
||||
struct lc_cipher_ctx {
|
||||
|
@ -229,6 +229,8 @@ static struct lc_cipher_impl chacha20_impl = {
|
||||
|
||||
.ctx_new = &chacha20_ctx_new,
|
||||
.ctx_free = NULL,
|
||||
|
||||
.blocklen = LC_CHACHA20_BLOCKLEN,
|
||||
};
|
||||
|
||||
static struct lc_cipher_impl xchacha20_impl = {
|
||||
@ -244,6 +246,8 @@ static struct lc_cipher_impl xchacha20_impl = {
|
||||
|
||||
.ctx_new = &chacha20_ctx_new,
|
||||
.ctx_free = NULL,
|
||||
|
||||
.blocklen = LC_XCHACHA20_BLOCKLEN,
|
||||
};
|
||||
|
||||
const struct lc_cipher_impl *
|
||||
|
Loading…
Reference in New Issue
Block a user