31 static uint8_t
const ASCON128_IV1[8] =
32 {0x81, 0x40, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00};
37 static uint8_t
const ASCON128_IV2[8] =
38 {0x82, 0x40, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00};
48 static void ascon128_siv_init
50 const unsigned char *k,
const uint8_t iv[8])
72 static void ascon_siv_encrypt_8
74 const unsigned char *src,
size_t len, uint8_t first_round)
76 unsigned char block[8];
93 (
unsigned char *c,
size_t *clen,
94 const unsigned char *m,
size_t mlen,
95 const unsigned char *ad,
size_t adlen,
96 const unsigned char *npub,
97 const unsigned char *k)
105 ascon128_siv_init(&
state, npub, k, ASCON128_IV1);
125 ascon128_siv_init(&
state, c + mlen, k, ASCON128_IV2);
128 ascon_siv_encrypt_8(&
state, c, m, mlen, 6);
133 (
unsigned char *m,
size_t *mlen,
134 const unsigned char *c,
size_t clen,
135 const unsigned char *ad,
size_t adlen,
136 const unsigned char *npub,
137 const unsigned char *k)
150 ascon128_siv_init(&
state, c + clen, k, ASCON128_IV2);
153 ascon_siv_encrypt_8(&
state, m, c, clen, 6);
157 ascon128_siv_init(&
state, npub, k, ASCON128_IV1);
#define ASCON128_TAG_SIZE
Size of the authentication tag for ASCON-128 and ASCON-128a.
#define ASCON128_NONCE_SIZE
Size of the nonce for ASCON-128 and ASCON-128a.
#define ASCON128_KEY_SIZE
Size of the key for ASCON-128 and ASCON-128a.
int ascon_aead_check_tag(unsigned char *plaintext, size_t plaintext_len, const unsigned char *tag1, const unsigned char *tag2, size_t size)
Check an authentication tag in constant time.
void ascon_aead_absorb_8(ascon_state_t *state, const unsigned char *data, size_t len, uint8_t first_round, int last_permute)
Absorbs data into an ASCON state with an 8-byte rate.
int ascon128_siv_decrypt(unsigned char *m, size_t *mlen, const unsigned char *c, size_t clen, const unsigned char *ad, size_t adlen, const unsigned char *npub, const unsigned char *k)
Decrypts and authenticates a packet with ASCON-128-SIV.
void ascon128_siv_encrypt(unsigned char *c, size_t *clen, const unsigned char *m, size_t mlen, const unsigned char *ad, size_t adlen, const unsigned char *npub, const unsigned char *k)
Encrypts and authenticates a packet with ASCON-128-SIV.
#define ascon_absorb_16(state, data, offset)
#define ascon_squeeze_8(state, data, offset)
#define ascon_squeeze_16(state, data, offset)
#define ascon_separator(state)
#define lw_xor_block_2_src(dest, src1, src2, len)
void ascon_free(ascon_state_t *state)
Frees an ASCON permutation state and attempts to destroy any sensitive material.
void ascon_overwrite_bytes(ascon_state_t *state, const uint8_t *data, unsigned offset, unsigned size)
Overwrites existing bytes in the ASCON state.
void ascon_permute(ascon_state_t *state, uint8_t first_round)
Permutes the ASCON state with a specified number of rounds.
void ascon_init(ascon_state_t *state)
Initializes the words of the ASCON permutation state to zero.
SIV encryption primitives built around the ASCON permutation.
ascon_state_t state
[snippet_key]
Structure of the internal state of the ASCON permutation.
void ascon_clean(void *buf, unsigned size)
Cleans a buffer that contains sensitive material.