linter: fix doc comments issues

support/v2.15
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
// OwnerID type alias.
OwnerID = refs.OwnerID
// OwnerID type alias.
// MessageID type alias.
MessageID = refs.MessageID
)

View File

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

View File

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