lilliput-ae-reference-implementation

Implementations of Lilliput-AE submitted to the NIST LWC standardization process
git clone https://git.kevinlegouguec.net/lilliput-ae-reference-implementation
Log | Files | Refs | README

api.h (234B)


      1 #ifndef API_H
      2 #define API_H
      3 
      4 #include "constants.h"
      5 
      6 #define CRYPTO_KEYBYTES  KEY_BYTES
      7 #define CRYPTO_NSECBYTES 0
      8 #define CRYPTO_NPUBBYTES NONCE_BYTES
      9 #define CRYPTO_ABYTES    TAG_BYTES
     10 #define CRYPTO_NOOVERLAP 1
     11 
     12 #endif /* API_H */