forked from TrueCloudLab/frostfs-api-go
[#55] refs: Add Scheme field to Signature
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
66e1fb8c53
commit
a4349f6692
10 changed files with 252 additions and 85 deletions
|
@ -31,8 +31,17 @@ type Checksum struct {
|
|||
|
||||
type ChecksumType uint32
|
||||
|
||||
type SignatureScheme uint32
|
||||
|
||||
const (
|
||||
UnspecifiedScheme SignatureScheme = iota
|
||||
ECDSA_SHA512
|
||||
ECDSA_RFC6979_SHA256
|
||||
)
|
||||
|
||||
type Signature struct {
|
||||
key, sign []byte
|
||||
scheme SignatureScheme
|
||||
}
|
||||
|
||||
type SubnetID struct {
|
||||
|
@ -175,6 +184,19 @@ func (s *Signature) SetSign(v []byte) {
|
|||
}
|
||||
}
|
||||
|
||||
func (s *Signature) GetScheme() SignatureScheme {
|
||||
if s != nil {
|
||||
return s.scheme
|
||||
}
|
||||
return UnspecifiedScheme
|
||||
}
|
||||
|
||||
func (s *Signature) SetScheme(scheme SignatureScheme) {
|
||||
if s != nil {
|
||||
s.scheme = scheme
|
||||
}
|
||||
}
|
||||
|
||||
func (s *SubnetID) SetValue(id uint32) {
|
||||
if s != nil {
|
||||
s.value = id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue