mirror of
				https://source.quilibrium.com/quilibrium/ceremonyclient.git
				synced 2025-11-04 00:27:41 +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
 |