linter: fix doc comments issues

This commit is contained in:
Evgeniy Kulikov 2019-11-21 12:34:54 +03:00
parent a6c563e039
commit 165dc9abd7
No known key found for this signature in database
GPG key ID: BF6AEE0A2A699BF2
3 changed files with 4 additions and 5 deletions

View file

@ -15,7 +15,7 @@ type (
UUID = refs.UUID UUID = refs.UUID
// OwnerID type alias. // OwnerID type alias.
OwnerID = refs.OwnerID OwnerID = refs.OwnerID
// OwnerID type alias. // MessageID type alias.
MessageID = refs.MessageID MessageID = refs.MessageID
) )

View file

@ -68,8 +68,8 @@ func (m *Container) Empty() bool {
} }
// -- Test container definition -- // // -- Test container definition -- //
// NewTestContainer returns test container. // NewTestContainer returns test container.
//
// WARNING: DON'T USE THIS OUTSIDE TESTS. // WARNING: DON'T USE THIS OUTSIDE TESTS.
func NewTestContainer() (*Container, error) { func NewTestContainer() (*Container, error) {
key := test.DecodeKey(0) key := test.DecodeKey(0)

View file

@ -124,7 +124,7 @@ func (m *Token) Verify(keys ...*ecdsa.PublicKey) bool {
return false return false
} }
// Sign adds token signatures. // AddSignatures adds token signatures.
func (t *PToken) AddSignatures(signH, signT []byte) { func (t *PToken) AddSignatures(signH, signT []byte) {
t.mtx.Lock() t.mtx.Lock()
@ -139,8 +139,7 @@ func (t *PToken) SignData(data []byte) ([]byte, error) {
return crypto.Sign(t.PrivateKey, data) return crypto.Sign(t.PrivateKey, data)
} }
// VerifyData checks if signature of data by token t // VerifyData checks if signature of data by token is equal to sign.
// is equal to sign.
func (m *VerificationHeader) VerifyData(data, sign []byte) error { func (m *VerificationHeader) VerifyData(data, sign []byte) error {
if crypto.Verify(crypto.UnmarshalPublicKey(m.PublicKey), data, sign) != nil { if crypto.Verify(crypto.UnmarshalPublicKey(m.PublicKey), data, sign) != nil {
return ErrInvalidSignature return ErrInvalidSignature