Merge pull request #6 from hloeffler/master

make GoLint happy
This commit is contained in:
Jeff Lindsay 2016-12-20 15:18:13 -06:00 committed by GitHub
commit 7bc24bc5e0
2 changed files with 2 additions and 1 deletions

1
ssh.go

@ -5,6 +5,7 @@ import (
"net"
)
// Signal as in RFC 4254 Section 6.10.
type Signal string
// POSIX signals as listed in RFC 4254 Section 6.10.

@ -21,7 +21,7 @@ type Signer interface {
gossh.Signer
}
// ParseAuthorizedKeys parses a public key from an authorized_keys file used in
// ParseAuthorizedKey parses a public key from an authorized_keys file used in
// OpenSSH according to the sshd(8) manual page.
func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) {
return gossh.ParseAuthorizedKey(in)