ascon.h 137 Bytes
Newer Older
Martin Schläffer committed
1 2 3 4 5 6
#ifndef ASCON_H_
#define ASCON_H_

#include <stdint.h>

typedef struct {
Martin Schläffer committed
7
  uint64_t x0, x1, x2, x3, x4;
Martin Schläffer committed
8 9
} state_t;

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