forked from TrueCloudLab/frostfs-node
20 lines
527 B
Go
20 lines
527 B
Go
|
package internal
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
|
||
|
"github.com/nspcc-dev/neofs-api-go/v2/session"
|
||
|
"github.com/nspcc-dev/neofs-node/pkg/core/client"
|
||
|
)
|
||
|
|
||
|
// VerifyResponseKeyV2 checks if response is signed with expected key. Returns client.ErrWrongPublicKey if not.
|
||
|
func VerifyResponseKeyV2(expectedKey []byte, resp interface {
|
||
|
GetVerificationHeader() *session.ResponseVerificationHeader
|
||
|
}) error {
|
||
|
if !bytes.Equal(resp.GetVerificationHeader().GetBodySignature().GetKey(), expectedKey) {
|
||
|
return client.ErrWrongPublicKey
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|