neoneo-go/pkg/crypto/verifiable.go

7 lines
128 B
Go
Raw Normal View History

package crypto
// Verifiable represents an object which can be verified.
type Verifiable interface {
GetSignedPart() []byte
}