multi_party_ecdsa/protocols/two_party_ecdsa/mod.rs
1/*
2 Multi-party ECDSA
3
4 Copyright 2018 by Kzen Networks
5
6 This file is part of Multi-party ECDSA library
7 (https://github.com/KZen-networks/multi-party-ecdsa)
8
9 Multi-party ECDSA is free software: you can redistribute
10 it and/or modify it under the terms of the GNU General Public
11 License as published by the Free Software Foundation, either
12 version 3 of the License, or (at your option) any later version.
13
14 @license GPL-3.0+ <https://github.com/KZen-networks/multi-party-ecdsa/blob/master/LICENSE>
15*/
16
17// Fast Secure Two-Party ECDSA Signing by Yehuda Lindell (https://eprint.iacr.org/2017/552.pdf).
18
19pub mod lindell_2017;
20
21// Two-Party ECDSA from Hash Proof Systems and
22//Efficient Instantiations (https://eprint.iacr.org/2019/503.pdf)
23#[cfg(feature = "cclst")]
24pub mod cclst_2019;