/* * 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_decrypt() * 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_t.h"intcrypto_aead_decrypt(unsignedchar*m,unsignedlonglong*mlen,unsignedchar*nsec,constunsignedchar*c,unsignedlonglongclen,constunsignedchar*ad,unsignedlonglongadlen,constunsignedchar*npub,constunsignedchar*k){returnromulus_t_decrypt(m,mlen,nsec,c,clen,ad,adlen,npub,k);}