1ac6b819c5
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
71 lines
1.7 KiB
Go
71 lines
1.7 KiB
Go
package signature
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/v2/refs"
|
|
)
|
|
|
|
// Signature represents v2-compatible signature.
|
|
type Signature refs.Signature
|
|
|
|
// NewFromV2 wraps v2 Signature message to Signature.
|
|
//
|
|
// Nil refs.Signature converts to nil.
|
|
func NewFromV2(sV2 *refs.Signature) *Signature {
|
|
return (*Signature)(sV2)
|
|
}
|
|
|
|
// New creates and initializes blank Signature.
|
|
//
|
|
// Defaults:
|
|
// - key: nil;
|
|
// - signature: nil.
|
|
func New() *Signature {
|
|
return NewFromV2(new(refs.Signature))
|
|
}
|
|
|
|
// Key sets binary public key.
|
|
func (s *Signature) Key() []byte {
|
|
return (*refs.Signature)(s).GetKey()
|
|
}
|
|
|
|
// SetKey returns binary public key.
|
|
func (s *Signature) SetKey(v []byte) {
|
|
(*refs.Signature)(s).SetKey(v)
|
|
}
|
|
|
|
// Sign return signature value.
|
|
func (s *Signature) Sign() []byte {
|
|
return (*refs.Signature)(s).GetSign()
|
|
}
|
|
|
|
// SetSign sets signature value.
|
|
func (s *Signature) SetSign(v []byte) {
|
|
(*refs.Signature)(s).SetSign(v)
|
|
}
|
|
|
|
// ToV2 converts Signature to v2 Signature message.
|
|
//
|
|
// Nil Signature converts to nil.
|
|
func (s *Signature) ToV2() *refs.Signature {
|
|
return (*refs.Signature)(s)
|
|
}
|
|
|
|
// Marshal marshals Signature into a protobuf binary form.
|
|
func (s *Signature) Marshal() ([]byte, error) {
|
|
return (*refs.Signature)(s).StableMarshal(nil)
|
|
}
|
|
|
|
// Unmarshal unmarshals protobuf binary representation of Signature.
|
|
func (s *Signature) Unmarshal(data []byte) error {
|
|
return (*refs.Signature)(s).Unmarshal(data)
|
|
}
|
|
|
|
// MarshalJSON encodes Signature to protobuf JSON format.
|
|
func (s *Signature) MarshalJSON() ([]byte, error) {
|
|
return (*refs.Signature)(s).MarshalJSON()
|
|
}
|
|
|
|
// UnmarshalJSON decodes Signature from protobuf JSON format.
|
|
func (s *Signature) UnmarshalJSON(data []byte) error {
|
|
return (*refs.Signature)(s).UnmarshalJSON(data)
|
|
}
|