mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-14 16:17:17 +03:00
Add KeyboardInteractiveCallback so that even client do now have publickey, username can still be passed in
This commit is contained in:
parent
9a2d14066c
commit
2b90eab1d5
@ -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