go:generate hsp MarshalHasher is the interface implemented by an object that can be stably marshalling hashed.
| 27 | |
| 28 | // MarshalHasher is the interface implemented by an object that can be stably marshalling hashed. |
| 29 | type MarshalHasher interface { |
| 30 | MarshalHash() ([]byte, error) |
| 31 | } |
| 32 | |
| 33 | // HashSignVerifier is the interface implemented by an object that contains a hash value of an |
| 34 | // MarshalHasher, can be signed by a private key and verified later. |
no outgoing calls
no test coverage detected