Merge pull request #62 from songgao/songgao/get_username_without_publickey

Allow non-PublicKey authentication.
This commit is contained in:
Andrey Petrov 2014-12-16 13:04:56 -08:00
commit ee28f8c613

View File

@ -77,6 +77,9 @@ func NewServer(privateKey []byte) (*Server, error) {
perm := &ssh.Permissions{Extensions: map[string]string{"fingerprint": fingerprint}}
return perm, nil
},
KeyboardInteractiveCallback: func(conn ssh.ConnMetadata, challenge ssh.KeyboardInteractiveChallenge) (*ssh.Permissions, error) {
return nil, nil
},
}
config.AddHostKey(signer)