frostfs-api-go/signature/marshaller.go
Evgenii Stratonikov 6dc55b3fca
Some checks failed
DCO action / DCO (pull_request) Failing after 47s
Tests and linters / Tests (1.19) (pull_request) Successful in 46s
Tests and linters / Tests (1.20) (pull_request) Successful in 50s
Tests and linters / Lint (pull_request) Failing after 57s
Tests and linters / Tests with -race (pull_request) Successful in 1m6s
protogen: Initial implementation
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-08-08 15:35:29 +03:00

30 lines
490 B
Go

package signature
type stableMarshaler interface {
StableMarshal([]byte) []byte
StableSize() int
}
type messageData interface {
MessageData() []byte
}
type StableMarshalerWrapper struct {
SM stableMarshaler
}
func (s StableMarshalerWrapper) ReadSignedData(buf []byte) ([]byte, error) {
if s.SM != nil {
return s.SM.StableMarshal(buf), nil
}
return nil, nil
}
func (s StableMarshalerWrapper) SignedDataSize() int {
if s.SM != nil {
return s.SM.StableSize()
}
return 0
}