forked from TrueCloudLab/frostfs-api-go
service: get rid of proto.Message in Maintainable/Verifiable requests
This commit is contained in:
parent
173f0366ac
commit
891ba27ede
1 changed files with 0 additions and 3 deletions
|
@ -3,7 +3,6 @@ package service
|
||||||
import (
|
import (
|
||||||
"crypto/ecdsa"
|
"crypto/ecdsa"
|
||||||
|
|
||||||
"github.com/gogo/protobuf/proto"
|
|
||||||
crypto "github.com/nspcc-dev/neofs-crypto"
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
||||||
"github.com/nspcc-dev/neofs-proto/internal"
|
"github.com/nspcc-dev/neofs-proto/internal"
|
||||||
"github.com/nspcc-dev/neofs-proto/refs"
|
"github.com/nspcc-dev/neofs-proto/refs"
|
||||||
|
@ -13,7 +12,6 @@ import (
|
||||||
type (
|
type (
|
||||||
// VerifiableRequest adds possibility to sign and verify request header.
|
// VerifiableRequest adds possibility to sign and verify request header.
|
||||||
VerifiableRequest interface {
|
VerifiableRequest interface {
|
||||||
proto.Message
|
|
||||||
Marshal() ([]byte, error)
|
Marshal() ([]byte, error)
|
||||||
AddSignature(*RequestVerificationHeader_Signature)
|
AddSignature(*RequestVerificationHeader_Signature)
|
||||||
GetSignatures() []*RequestVerificationHeader_Signature
|
GetSignatures() []*RequestVerificationHeader_Signature
|
||||||
|
@ -23,7 +21,6 @@ type (
|
||||||
// MaintainableRequest adds possibility to set and get (+validate)
|
// MaintainableRequest adds possibility to set and get (+validate)
|
||||||
// owner (client) public key from RequestVerificationHeader.
|
// owner (client) public key from RequestVerificationHeader.
|
||||||
MaintainableRequest interface {
|
MaintainableRequest interface {
|
||||||
proto.Message
|
|
||||||
GetOwner() (*ecdsa.PublicKey, error)
|
GetOwner() (*ecdsa.PublicKey, error)
|
||||||
SetOwner(*ecdsa.PublicKey, []byte)
|
SetOwner(*ecdsa.PublicKey, []byte)
|
||||||
GetLastPeer() (*ecdsa.PublicKey, error)
|
GetLastPeer() (*ecdsa.PublicKey, error)
|
||||||
|
|
Loading…
Reference in a new issue