2019-11-18 16:22:08 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
|
2020-03-31 07:05:26 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/internal"
|
2019-11-18 16:22:08 +00:00
|
|
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
|
|
|
)
|
|
|
|
|
2020-05-06 09:50:15 +00:00
|
|
|
// GetSessionToken returns SessionToken interface of Token field.
|
|
|
|
//
|
|
|
|
// If token field value is nil, nil returns.
|
|
|
|
func (m RequestVerificationHeader) GetSessionToken() SessionToken {
|
|
|
|
if t := m.GetToken(); t != nil {
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSignKey adds new element to Signatures field.
|
|
|
|
//
|
|
|
|
// Sets Sign field to passed sign. Set Peer field to marshaled passed key.
|
|
|
|
func (m *RequestVerificationHeader) AddSignKey(sign []byte, key *ecdsa.PublicKey) {
|
|
|
|
m.SetSignatures(
|
|
|
|
append(
|
|
|
|
m.GetSignatures(),
|
|
|
|
&RequestVerificationHeader_Signature{
|
|
|
|
Sign: sign,
|
|
|
|
Peer: crypto.MarshalPublicKey(key),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSignKeyPairs returns the elements of Signatures field as SignKeyPair slice.
|
|
|
|
func (m RequestVerificationHeader) GetSignKeyPairs() []SignKeyPair {
|
|
|
|
var (
|
|
|
|
signs = m.GetSignatures()
|
|
|
|
res = make([]SignKeyPair, len(signs))
|
|
|
|
)
|
|
|
|
|
|
|
|
for i := range signs {
|
|
|
|
res[i] = signs[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSignature returns the result of a Sign field getter.
|
|
|
|
func (m RequestVerificationHeader_Signature) GetSignature() []byte {
|
|
|
|
return m.GetSign()
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPublicKey unmarshals and returns the result of a Peer field getter.
|
|
|
|
func (m RequestVerificationHeader_Signature) GetPublicKey() *ecdsa.PublicKey {
|
|
|
|
return crypto.UnmarshalPublicKey(m.GetPeer())
|
|
|
|
}
|
|
|
|
|
2019-11-19 16:03:42 +00:00
|
|
|
// SetSignatures replaces signatures stored in RequestVerificationHeader.
|
2019-11-18 16:22:08 +00:00
|
|
|
func (m *RequestVerificationHeader) SetSignatures(signatures []*RequestVerificationHeader_Signature) {
|
|
|
|
m.Signatures = signatures
|
|
|
|
}
|
|
|
|
|
2020-04-28 13:02:40 +00:00
|
|
|
// SetToken is a Token field setter.
|
|
|
|
func (m *RequestVerificationHeader) SetToken(token *Token) {
|
|
|
|
m.Token = token
|
|
|
|
}
|
|
|
|
|
2020-06-18 12:01:25 +00:00
|
|
|
// SetBearer is a Bearer field setter.
|
|
|
|
func (m *RequestVerificationHeader) SetBearer(v *BearerTokenMsg) {
|
|
|
|
m.Bearer = v
|
|
|
|
}
|
|
|
|
|
2019-11-19 16:03:42 +00:00
|
|
|
// testCustomField for test usage only.
|
|
|
|
type testCustomField [8]uint32
|
|
|
|
|
|
|
|
var _ internal.Custom = (*testCustomField)(nil)
|
|
|
|
|
|
|
|
// Reset skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Reset() {}
|
|
|
|
|
|
|
|
// ProtoMessage skip, it's for test usage only.
|
|
|
|
func (t testCustomField) ProtoMessage() {}
|
|
|
|
|
|
|
|
// Size skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Size() int { return 32 }
|
|
|
|
|
|
|
|
// String skip, it's for test usage only.
|
|
|
|
func (t testCustomField) String() string { return "" }
|
|
|
|
|
|
|
|
// Bytes skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Bytes() []byte { return nil }
|
|
|
|
|
|
|
|
// Unmarshal skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Unmarshal(data []byte) error { return nil }
|
|
|
|
|
|
|
|
// Empty skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Empty() bool { return false }
|
|
|
|
|
|
|
|
// UnmarshalTo skip, it's for test usage only.
|
|
|
|
func (t testCustomField) MarshalTo(data []byte) (int, error) { return 0, nil }
|
|
|
|
|
|
|
|
// Marshal skip, it's for test usage only.
|
|
|
|
func (t testCustomField) Marshal() ([]byte, error) { return nil, nil }
|