ASCON Suite
|
Go to the source code of this file.
Functions | |
ascon_clean (data, sizeof(data)) | |
void | ofb_encrypt (ascon_state_t *state, unsigned char *c, const unsigned char *m, int len) |
[snippet_zero2] More... | |
void | cfb_encrypt (ascon_state_t *state, unsigned char *c, const unsigned char *m, int len) |
[snippet_encrypt_ofb] More... | |
void | cfb_decrypt (ascon_state_t *state, unsigned char *m, const unsigned char *c, int len) |
[snippet_encrypt_cfb] More... | |
void | cfb_auth_encrypt (ascon_state_t *state, unsigned char *c, const unsigned char *m, int len, unsigned char tag[16]) |
[snippet_decrypt_cfb2] More... | |
Variables | |
ascon_state_t | state |
[snippet_key] More... | |
unsigned char | data [8] |
[snippet_key] More... | |
void cfb_auth_encrypt | ( | ascon_state_t * | state, |
unsigned char * | c, | ||
const unsigned char * | m, | ||
int | len, | ||
unsigned char | tag[16] | ||
) |
void cfb_decrypt | ( | ascon_state_t * | state, |
unsigned char * | m, | ||
const unsigned char * | c, | ||
int | len | ||
) |
[snippet_encrypt_cfb]
[snippet_decrypt_cfb]
[snippet_decrypt_cfb2]
Definition at line 55 of file snippets.c.
void cfb_encrypt | ( | ascon_state_t * | state, |
unsigned char * | c, | ||
const unsigned char * | m, | ||
int | len | ||
) |
void ofb_encrypt | ( | ascon_state_t * | state, |
unsigned char * | c, | ||
const unsigned char * | m, | ||
int | len | ||
) |
unsigned char data[8] |
[snippet_key]
[snippet_zero]
Definition at line 14 of file snippets.c.
ascon_overwrite_with_zeroes & state |
[snippet_key]
[snippet_zero]
[snippet_zero2]
Definition at line 2 of file snippets.c.