Files
2025-07-25 19:04:58 -05:00

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)
}