ascon.h 684 Bytes
Newer Older
Martin Schläffer committed
1 2 3 4 5 6 7 8 9 10 11
#ifndef ASCON_H_
#define ASCON_H_

#include <stdint.h>

#include "word.h"

typedef struct {
  word_t x0, x1, x2, x3, x4;
} state_t;

Martin Schläffer committed
12 13 14
#define ASCON_ABSORB 0x1
#define ASCON_SQUEEZE 0x2
#define ASCON_INSERT 0x4
Enrico Pozzobon committed
15
#define ASCON_HASH 0x8
Martin Schläffer committed
16 17
#define ASCON_ENCRYPT (ASCON_ABSORB | ASCON_SQUEEZE)
#define ASCON_DECRYPT (ASCON_ABSORB | ASCON_SQUEEZE | ASCON_INSERT)
Martin Schläffer committed
18

Enrico Pozzobon committed
19
void ascon_update(state_t* s, uint8_t* out, const uint8_t* in, uint64_t len,
Martin Schläffer committed
20 21
                  uint8_t mode);

Enrico Pozzobon committed
22
void ascon_aead(state_t* s, uint8_t* out, const uint8_t* in, uint64_t tlen,
Martin Schläffer committed
23 24 25
                const uint8_t* ad, uint64_t adlen, const uint8_t* npub,
                const uint8_t* k, uint8_t mode);

Martin Schläffer committed
26
#endif /* ASCON_H */