frost trusted dealer: initialize project
This commit adds the foundational configuration and building scripts and an initial structure for the project.
This commit is contained in:
2
src/modules/frost/Makefile.am.include
Normal file
2
src/modules/frost/Makefile.am.include
Normal file
@@ -0,0 +1,2 @@
|
||||
include_HEADERS += include/secp256k1_frost.h
|
||||
noinst_HEADERS += src/modules/frost/main_impl.h
|
||||
10
src/modules/frost/main_impl.h
Normal file
10
src/modules/frost/main_impl.h
Normal file
@@ -0,0 +1,10 @@
|
||||
/**********************************************************************
|
||||
* Copyright (c) 2021-2023 Jesse Posner *
|
||||
* Distributed under the MIT software license, see the accompanying *
|
||||
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef SECP256K1_MODULE_FROST_MAIN
|
||||
#define SECP256K1_MODULE_FROST_MAIN
|
||||
|
||||
#endif
|
||||
@@ -889,6 +889,10 @@ static int secp256k1_ge_parse_ext(secp256k1_ge* ge, const unsigned char *in33) {
|
||||
# include "modules/ecdsa_adaptor/main_impl.h"
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_MODULE_FROST
|
||||
# include "modules/frost/main_impl.h"
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_MODULE_MUSIG
|
||||
# include "modules/musig/main_impl.h"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user