10 lines
325 B
Go
10 lines
325 B
Go
|
// Sigs package allows for signing, verifying signatures and key generation
|
||
|
// using key types selected by package user.
|
||
|
//
|
||
|
// For support of secp256k1 import:
|
||
|
// _ "github.com/filecoin-project/lotus/lib/sigs/secp"
|
||
|
//
|
||
|
// For support of Filecoin BLS import:
|
||
|
// _ "github.com/filecoin-project/lotus/lib/sigs/bls"
|
||
|
package sigs
|