30 static uint8_t
const ASCON80PQ_IV[4] = {0xa0, 0x40, 0x0c, 0x06};
33 (
unsigned char *c,
size_t *clen,
34 const unsigned char *m,
size_t mlen,
35 const unsigned char *ad,
size_t adlen,
36 const unsigned char *npub,
37 const unsigned char *k)
40 unsigned char partial;
73 (
unsigned char *m,
size_t *mlen,
74 const unsigned char *c,
size_t clen,
75 const unsigned char *ad,
size_t adlen,
76 const unsigned char *npub,
77 const unsigned char *k)
81 unsigned char partial;
#define ASCON80PQ_NONCE_SIZE
Size of the nonce for ASCON-80pq.
#define ASCON80PQ_TAG_SIZE
Size of the authentication tag for ASCON-80pq.
#define ASCON80PQ_KEY_SIZE
Size of the key for ASCON-80pq.
void ascon80pq_aead_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-80pq.
int ascon80pq_aead_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-80pq.
unsigned char ascon_aead_encrypt_8(ascon_state_t *state, unsigned char *dest, const unsigned char *src, size_t len, uint8_t first_round, unsigned char partial)
Encrypts a block of data with an ASCON state and an 8-byte rate.
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.
unsigned char ascon_aead_decrypt_8(ascon_state_t *state, unsigned char *dest, const unsigned char *src, size_t len, uint8_t first_round, unsigned char partial)
Decrypts a block of data with an ASCON state and an 8-byte rate.
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.
#define ascon_pad(state, offset)
#define ascon_absorb_16(state, data, offset)
#define ascon_absorb_partial(state, data, offset, count)
#define ascon_squeeze_16(state, data, offset)
#define ascon_separator(state)
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.
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.