lint fixes

This commit is contained in:
Pavel 2021-11-17 16:37:27 +03:00
parent 6559a02f98
commit 591456fa3c
3 changed files with 8 additions and 6 deletions

View file

@ -248,8 +248,8 @@ func (r ConnectRequest) SystemURL() string {
// Verify returns true if connection request is legitimate. Application secret should be provided to this method.
func (r ConnectRequest) Verify(secret string) bool {
mac := hmac.New(sha256.New, []byte(secret))
mac.Write([]byte(r.APIKey))
expected := mac.Sum(nil)
return hmac.Equal([]byte(r.Token), []byte(hex.EncodeToString(expected)))
if _, err := mac.Write([]byte(r.APIKey)); err != nil {
panic(err)
}
return hmac.Equal([]byte(r.Token), []byte(hex.EncodeToString(mac.Sum(nil))))
}

View file

@ -36,6 +36,8 @@ func (t *ConnectRequestTest) Test_Verify() {
func createConnectToken(apiKey, secret string) string {
mac := hmac.New(sha256.New, []byte(secret))
mac.Write([]byte(apiKey))
if _, err := mac.Write([]byte(apiKey)); err != nil {
panic(err)
}
return hex.EncodeToString(mac.Sum(nil))
}

View file

@ -8,7 +8,7 @@ import (
func TestNewConnectResponse(t *testing.T) {
assert.Equal(t, ConnectResponse{
Response: Response{
SuccessfulResponse: SuccessfulResponse{
Success: true,
},
AccountURL: "https://example.com",