mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
11 lines
271 B
Go
11 lines
271 B
Go
// Copyright (C) 2020-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package bls
|
|
|
|
type Signer interface {
|
|
PublicKey() *PublicKey
|
|
Sign(msg []byte) (*Signature, error)
|
|
SignProofOfPossession(msg []byte) (*Signature, error)
|
|
}
|