#include "core.h" int crypto_aead_encrypt(unsigned char* c, unsigned long long* clen, const unsigned char* m, unsigned long long mlen, const unsigned char* ad, unsigned long long adlen, const unsigned char* nsec, const unsigned char* npub, const unsigned char* k) { state s; (void)nsec; // set ciphertext size *clen = mlen + CRYPTO_ABYTES; ascon_core(&s, c, m, mlen, ad, adlen, npub, k, ASCON_ENC); // set tag *(u64*)(c + mlen) = U64BIG(s.x3); *(u64*)(c + mlen + 8) = U64BIG(s.x4); return 0; }