mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-14 16:17:17 +03:00
Merge pull request #62 from songgao/songgao/get_username_without_publickey
Allow non-PublicKey authentication.
This commit is contained in:
commit
ee28f8c613
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user