schnorrsig: Init empty experimental module

This commit is contained in:
Jonas Nick
2020-05-12 21:19:03 +00:00
parent eabd9bc46a
commit 7a703fd97d
8 changed files with 88 additions and 1 deletions

View File

@@ -5310,6 +5310,10 @@ void run_ecdsa_openssl(void) {
# include "modules/extrakeys/tests_impl.h"
#endif
#ifdef ENABLE_MODULE_SCHNORRSIG
# include "modules/schnorrsig/tests_impl.h"
#endif
void run_memczero_test(void) {
unsigned char buf1[6] = {1, 2, 3, 4, 5, 6};
unsigned char buf2[sizeof(buf1)];
@@ -5620,6 +5624,10 @@ int main(int argc, char **argv) {
run_extrakeys_tests();
#endif
#ifdef ENABLE_MODULE_SCHNORRSIG
run_schnorrsig_tests();
#endif
/* util tests */
run_memczero_test();