ASCON Suite
|
ASCON-128 encryption algorithm and related family members. More...
#include <ascon/permutation.h>
Go to the source code of this file.
Classes | |
struct | ascon128_state_t |
State information for the incremental version of ASCON-128. More... | |
struct | ascon128a_state_t |
State information for the incremental version of ASCON-128a. More... | |
struct | ascon80pq_state_t |
State information for the incremental version of ASCON-80pq. More... | |
Macros | |
#define | ASCON128_KEY_SIZE 16 |
Size of the key for ASCON-128 and ASCON-128a. More... | |
#define | ASCON128_NONCE_SIZE 16 |
Size of the nonce for ASCON-128 and ASCON-128a. More... | |
#define | ASCON128_TAG_SIZE 16 |
Size of the authentication tag for ASCON-128 and ASCON-128a. More... | |
#define | ASCON80PQ_KEY_SIZE 20 |
Size of the key for ASCON-80pq. More... | |
#define | ASCON80PQ_NONCE_SIZE 16 |
Size of the nonce for ASCON-80pq. More... | |
#define | ASCON80PQ_TAG_SIZE 16 |
Size of the authentication tag for ASCON-80pq. More... | |
#define | ASCON128_RATE 8 |
Rate of absorbing and squeezing for ASCON-128. More... | |
#define | ASCON128A_RATE 16 |
Rate of absorbing and squeezing for ASCON-128a. More... | |
#define | ASCON80PQ_RATE 8 |
Rate of absorbing and squeezing for ASCON-80pq. More... | |
Functions | |
void | ascon128_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-128. More... | |
int | ascon128_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-128. More... | |
void | ascon128a_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-128a. More... | |
int | ascon128a_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-128a. More... | |
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. More... | |
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. More... | |
void | ascon128_aead_start (ascon128_state_t *state, const unsigned char *ad, size_t adlen, const unsigned char *npub, const unsigned char *k) |
Starts encrypting or decrypting a packet with ASCON-128 in incremental mode. More... | |
void | ascon128_aead_abort (ascon128_state_t *state) |
Aborts use of ASCON-128 in incremental mode. More... | |
void | ascon128_aead_encrypt_block (ascon128_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Encrypts a block of data with ASCON-128 in incremental mode. More... | |
void | ascon128_aead_encrypt_finalize (ascon128_state_t *state, unsigned char *tag) |
Finalizes an incremental ASCON-128 encryption operation and generates the authentication tag. More... | |
void | ascon128_aead_decrypt_block (ascon128_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Decrypts a block of data with ASCON-128 in incremental mode. More... | |
int | ascon128_aead_decrypt_finalize (ascon128_state_t *state, const unsigned char *tag) |
Finalizes an incremental ASCON-128 decryption operation and checks the authentication tag. More... | |
void | ascon128a_aead_start (ascon128a_state_t *state, const unsigned char *ad, size_t adlen, const unsigned char *npub, const unsigned char *k) |
Starts encrypting or decrypting a packet with ASCON-128a in incremental mode. More... | |
void | ascon128a_aead_abort (ascon128a_state_t *state) |
Aborts use of ASCON-128a in incremental mode. More... | |
void | ascon128a_aead_encrypt_block (ascon128a_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Encrypts a block of data with ASCON-128a in incremental mode. More... | |
void | ascon128a_aead_encrypt_finalize (ascon128a_state_t *state, unsigned char *tag) |
Finalizes an incremental ASCON-128a encryption operation and generates the authentication tag. More... | |
void | ascon128a_aead_decrypt_block (ascon128a_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Decrypts a block of data with ASCON-128a in incremental mode. More... | |
int | ascon128a_aead_decrypt_finalize (ascon128a_state_t *state, const unsigned char *tag) |
Finalizes an incremental ASCON-128a decryption operation and checks the authentication tag. More... | |
void | ascon80pq_aead_start (ascon80pq_state_t *state, const unsigned char *ad, size_t adlen, const unsigned char *npub, const unsigned char *k) |
Starts encrypting or decrypting a packet with ASCON-80pq in incremental mode. More... | |
void | ascon80pq_aead_abort (ascon80pq_state_t *state) |
Aborts use of ASCON-80pq in incremental mode. More... | |
void | ascon80pq_aead_encrypt_block (ascon80pq_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Encrypts a block of data with ASCON-80pq in incremental mode. More... | |
void | ascon80pq_aead_encrypt_finalize (ascon80pq_state_t *state, unsigned char *tag) |
Finalizes an incremental ASCON-80pq encryption operation and generates the authentication tag. More... | |
void | ascon80pq_aead_decrypt_block (ascon80pq_state_t *state, const unsigned char *in, unsigned char *out, size_t len) |
Decrypts a block of data with ASCON-80pq in incremental mode. More... | |
int | ascon80pq_aead_decrypt_finalize (ascon80pq_state_t *state, const unsigned char *tag) |
Finalizes an incremental ASCON-80pq decryption operation and checks the authentication tag. More... | |
ASCON-128 encryption algorithm and related family members.
The ASCON family consists of several related algorithms:
References: https://ascon.iaik.tugraz.at/
Definition in file aead.h.
#define ASCON128_KEY_SIZE 16 |
#define ASCON128_NONCE_SIZE 16 |
#define ASCON128_RATE 8 |
#define ASCON128_TAG_SIZE 16 |
#define ASCON128A_RATE 16 |
#define ASCON80PQ_NONCE_SIZE 16 |
#define ASCON80PQ_RATE 8 |
#define ASCON80PQ_TAG_SIZE 16 |
Size of the authentication tag for ASCON-80pq.
void ascon128_aead_abort | ( | ascon128_state_t * | state | ) |
Aborts use of ASCON-128 in incremental mode.
state | State to abort. |
This function may be used any time after ascon128_aead_start() and before the encryption or decryption process is finalized to abort the process entirely and free the state.
Definition at line 56 of file ascon-aead-inc-128.c.
int ascon128_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-128.
m | Buffer to receive the plaintext message on output. |
mlen | Receives the length of the plaintext message on output. |
c | Buffer that contains the ciphertext and authentication tag to decrypt. |
clen | Length of the input data in bytes, which includes the ciphertext and the 16 byte authentication tag. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to decrypt the packet. |
Definition at line 71 of file ascon-aead-128.c.
void ascon128_aead_decrypt_block | ( | ascon128_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Decrypts a block of data with ASCON-128 in incremental mode.
state | State to use for ASCON-128 encryption operations. |
in | Buffer that contains the ciphertext to decrypt. |
out | Buffer to receive the plaintext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 93 of file ascon-aead-inc-128.c.
int ascon128_aead_decrypt_finalize | ( | ascon128_state_t * | state, |
const unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-128 decryption operation and checks the authentication tag.
state | State to use for ASCON-128 encryption operations. |
tag | Points to the buffer containing the ciphertext's authentication tag. Must be at least ASCON128_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 103 of file ascon-aead-inc-128.c.
void ascon128_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-128.
c | Buffer to receive the output. |
clen | On exit, set to the length of the output which includes the ciphertext and the 16 byte authentication tag. |
m | Buffer that contains the plaintext message to encrypt. |
mlen | Length of the plaintext message in bytes. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to encrypt the packet. |
Definition at line 31 of file ascon-aead-128.c.
void ascon128_aead_encrypt_block | ( | ascon128_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Encrypts a block of data with ASCON-128 in incremental mode.
state | State to use for ASCON-128 encryption operations. |
in | Buffer that contains the plaintext to encrypt. |
out | Buffer to receive the ciphertext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 65 of file ascon-aead-inc-128.c.
void ascon128_aead_encrypt_finalize | ( | ascon128_state_t * | state, |
unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-128 encryption operation and generates the authentication tag.
state | State to use for ASCON-128 encryption operations. |
tag | Points to the buffer to receive the authentication tag. Must be at least ASCON128_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 75 of file ascon-aead-inc-128.c.
void ascon128_aead_start | ( | ascon128_state_t * | state, |
const unsigned char * | ad, | ||
size_t | adlen, | ||
const unsigned char * | npub, | ||
const unsigned char * | k | ||
) |
Starts encrypting or decrypting a packet with ASCON-128 in incremental mode.
state | State to initialize for ASCON-128 operations. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to encrypt the packet. |
The following sequence can be used to encrypt a list of i plaintext message blocks (m) to produce i ciphertext message blocks (c) and an authentication tag (t).
Decryption uses a similar sequence:
It is very important that the plaintext output from decryption be discarded if the authentication tag fails to verify. Applications should not use any of the data before verifying the tag.
Definition at line 31 of file ascon-aead-inc-128.c.
void ascon128a_aead_abort | ( | ascon128a_state_t * | state | ) |
Aborts use of ASCON-128a in incremental mode.
state | State to abort. |
This function may be used any time after ascon128a_aead_start() and before the encryption or decryption process is finalized to abort the process entirely and free the state.
Definition at line 56 of file ascon-aead-inc-128a.c.
int ascon128a_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-128a.
m | Buffer to receive the plaintext message on output. |
mlen | Receives the length of the plaintext message on output. |
c | Buffer that contains the ciphertext and authentication tag to decrypt. |
clen | Length of the input data in bytes, which includes the ciphertext and the 16 byte authentication tag. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to decrypt the packet. |
Definition at line 73 of file ascon-aead-128a.c.
void ascon128a_aead_decrypt_block | ( | ascon128a_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Decrypts a block of data with ASCON-128a in incremental mode.
state | State to use for ASCON-128a encryption operations. |
in | Buffer that contains the ciphertext to decrypt. |
out | Buffer to receive the plaintext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 93 of file ascon-aead-inc-128a.c.
int ascon128a_aead_decrypt_finalize | ( | ascon128a_state_t * | state, |
const unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-128a decryption operation and checks the authentication tag.
state | State to use for ASCON-128a encryption operations. |
tag | Points to the buffer containing the ciphertext's authentication tag. Must be at least ASCON128_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 103 of file ascon-aead-inc-128a.c.
void ascon128a_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-128a.
c | Buffer to receive the output. |
clen | On exit, set to the length of the output which includes the ciphertext and the 16 byte authentication tag. |
m | Buffer that contains the plaintext message to encrypt. |
mlen | Length of the plaintext message in bytes. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to encrypt the packet. |
Definition at line 33 of file ascon-aead-128a.c.
void ascon128a_aead_encrypt_block | ( | ascon128a_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Encrypts a block of data with ASCON-128a in incremental mode.
state | State to use for ASCON-128a encryption operations. |
in | Buffer that contains the plaintext to encrypt. |
out | Buffer to receive the ciphertext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 65 of file ascon-aead-inc-128a.c.
void ascon128a_aead_encrypt_finalize | ( | ascon128a_state_t * | state, |
unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-128a encryption operation and generates the authentication tag.
state | State to use for ASCON-128a encryption operations. |
tag | Points to the buffer to receive the authentication tag. Must be at least ASCON128_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 75 of file ascon-aead-inc-128a.c.
void ascon128a_aead_start | ( | ascon128a_state_t * | state, |
const unsigned char * | ad, | ||
size_t | adlen, | ||
const unsigned char * | npub, | ||
const unsigned char * | k | ||
) |
Starts encrypting or decrypting a packet with ASCON-128a in incremental mode.
state | State to initialize for ASCON-128a operations. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 16 bytes of the key to use to encrypt the packet. |
The following sequence can be used to encrypt a list of i plaintext message blocks (m) to produce i ciphertext message blocks (c) and an authentication tag (t).
Decryption uses a similar sequence:
It is very important that the plaintext output from decryption be discarded if the authentication tag fails to verify. Applications should not use any of the data before verifying the tag.
Definition at line 31 of file ascon-aead-inc-128a.c.
void ascon80pq_aead_abort | ( | ascon80pq_state_t * | state | ) |
Aborts use of ASCON-80pq in incremental mode.
state | State to abort. |
This function may be used any time after ascon80pq_aead_start() and before the encryption or decryption process is finalized to abort the process entirely and free the state.
Definition at line 55 of file ascon-aead-inc-80pq.c.
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.
m | Buffer to receive the plaintext message on output. |
mlen | Receives the length of the plaintext message on output. |
c | Buffer that contains the ciphertext and authentication tag to decrypt. |
clen | Length of the input data in bytes, which includes the ciphertext and the 16 byte authentication tag. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 20 bytes of the key to use to decrypt the packet. |
Definition at line 72 of file ascon-aead-80pq.c.
void ascon80pq_aead_decrypt_block | ( | ascon80pq_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Decrypts a block of data with ASCON-80pq in incremental mode.
state | State to use for ASCON-80pq encryption operations. |
in | Buffer that contains the ciphertext to decrypt. |
out | Buffer to receive the plaintext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 92 of file ascon-aead-inc-80pq.c.
int ascon80pq_aead_decrypt_finalize | ( | ascon80pq_state_t * | state, |
const unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-80pq decryption operation and checks the authentication tag.
state | State to use for ASCON-80pq encryption operations. |
tag | Points to the buffer containing the ciphertext's authentication tag. Must be at least ASCON80PQ_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 102 of file ascon-aead-inc-80pq.c.
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.
c | Buffer to receive the output. |
clen | On exit, set to the length of the output which includes the ciphertext and the 16 byte authentication tag. |
m | Buffer that contains the plaintext message to encrypt. |
mlen | Length of the plaintext message in bytes. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 20 bytes of the key to use to encrypt the packet. |
Definition at line 32 of file ascon-aead-80pq.c.
void ascon80pq_aead_encrypt_block | ( | ascon80pq_state_t * | state, |
const unsigned char * | in, | ||
unsigned char * | out, | ||
size_t | len | ||
) |
Encrypts a block of data with ASCON-80pq in incremental mode.
state | State to use for ASCON-80pq encryption operations. |
in | Buffer that contains the plaintext to encrypt. |
out | Buffer to receive the ciphertext output. Can be the same buffer as in. |
len | Length of the plaintext and ciphertext in bytes. |
Definition at line 64 of file ascon-aead-inc-80pq.c.
void ascon80pq_aead_encrypt_finalize | ( | ascon80pq_state_t * | state, |
unsigned char * | tag | ||
) |
Finalizes an incremental ASCON-80pq encryption operation and generates the authentication tag.
state | State to use for ASCON-80pq encryption operations. |
tag | Points to the buffer to receive the authentication tag. Must be at least ASCON80PQ_TAG_SIZE bytes in length. |
The contents of state will be freed by this function, destroying any sensitive material that may be present.
Definition at line 74 of file ascon-aead-inc-80pq.c.
void ascon80pq_aead_start | ( | ascon80pq_state_t * | state, |
const unsigned char * | ad, | ||
size_t | adlen, | ||
const unsigned char * | npub, | ||
const unsigned char * | k | ||
) |
Starts encrypting or decrypting a packet with ASCON-80pq in incremental mode.
state | State to initialize for ASCON-80pq operations. |
ad | Buffer that contains associated data to authenticate along with the packet but which does not need to be encrypted. |
adlen | Length of the associated data in bytes. |
npub | Points to the public nonce for the packet which must be 16 bytes in length. |
k | Points to the 20 bytes of the key to use to encrypt the packet. |
The following sequence can be used to encrypt a list of i plaintext message blocks (m) to produce i ciphertext message blocks (c) and an authentication tag (t).
Decryption uses a similar sequence:
It is very important that the plaintext output from decryption be discarded if the authentication tag fails to verify. Applications should not use any of the data before verifying the tag.
Definition at line 30 of file ascon-aead-inc-80pq.c.