mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
14 lines
412 B
Go
14 lines
412 B
Go
//
|
|
// Copyright Coinbase, Inc. All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
// Package v0 implements the 2-of-2 threshold ECDSA signing algorithm of
|
|
// [Doerner, Kondi, Lee, and shelat](https://eprint.iacr.org/2018/499).
|
|
// For an example of use, look at sign.go.
|
|
//
|
|
// It is currently a work in progress; do not use it in real-life scenarios yet.
|
|
// TODO: Docs to be completed.
|
|
package v0
|