forked from TrueCloudLab/frostfs-api-go
[#199] sdk/client: Verify header signature in GetObjectHeader method
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
c6884f9823
commit
3097059f85
1 changed files with 13 additions and 1 deletions
|
@ -569,7 +569,19 @@ func (c *Client) getObjectHeaderV2(ctx context.Context, p *ObjectHeaderParams, o
|
|||
return nil, errors.New("got nil instead of header with signature")
|
||||
}
|
||||
hdr = hdrWithSig.GetHeader()
|
||||
// todo: check signature there
|
||||
|
||||
if err := signer.VerifyDataWithSource(
|
||||
signature.StableMarshalerWrapper{
|
||||
SM: hdrWithSig.GetHeader(),
|
||||
},
|
||||
func() (key, sig []byte) {
|
||||
s := hdrWithSig.GetSignature()
|
||||
|
||||
return s.GetKey(), s.GetSign()
|
||||
},
|
||||
); err != nil {
|
||||
return nil, errors.Wrap(err, "incorrect object header signature")
|
||||
}
|
||||
default:
|
||||
panic(fmt.Sprintf("unexpected Head object type %T", v))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue