/* * Date: 21 April 2021 * Contact: Romulus Team (Mustafa Khairallah - mustafa.khairallah@ntu.edu.sg) * Romulus-N as compliant with the Romulus v1.3 specifications. * This file icludes crypto_aead_encrypt() * It superseeds earlier versions developed by Mustafa Khairallah and maintained * by Mustafa Khairallah, Thomas Peyrin and Kazuhiko Minematsu */#include "crypto_aead.h"#include "api.h"#include "variant.h"#include "skinny.h"#include "romulus_n.h"intcrypto_aead_encrypt(unsignedchar*c,unsignedlonglong*clen,constunsignedchar*m,unsignedlonglongmlen,constunsignedchar*ad,unsignedlonglongadlen,constunsignedchar*nsec,constunsignedchar*npub,constunsignedchar*k){returnromulus_n_encrypt(c,clen,m,mlen,ad,adlen,nsec,npub,k);}