13 lines
212 B
Go
13 lines
212 B
Go
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
||
|
|
||
|
package data
|
||
|
|
||
|
import (
|
||
|
)
|
||
|
|
||
|
type Signature interface {
|
||
|
Verify(ContentHasher) error
|
||
|
SetHexString(string) error
|
||
|
String() string
|
||
|
}
|