mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-09 14:19:19 +08:00
go1.16 (#14783)
This commit is contained in:
7
vendor/github.com/gliderlabs/ssh/options.go
generated
vendored
7
vendor/github.com/gliderlabs/ssh/options.go
generated
vendored
@ -42,6 +42,13 @@ func HostKeyFile(filepath string) Option {
|
||||
}
|
||||
}
|
||||
|
||||
func KeyboardInteractiveAuth(fn KeyboardInteractiveHandler) Option {
|
||||
return func(srv *Server) error {
|
||||
srv.KeyboardInteractiveHandler = fn
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
// HostKeyPEM returns a functional option that adds HostSigners to the server
|
||||
// from a PEM file as bytes.
|
||||
func HostKeyPEM(bytes []byte) Option {
|
||||
|
2
vendor/github.com/gliderlabs/ssh/server.go
generated
vendored
2
vendor/github.com/gliderlabs/ssh/server.go
generated
vendored
@ -124,7 +124,7 @@ func (srv *Server) config(ctx Context) *gossh.ServerConfig {
|
||||
for _, signer := range srv.HostSigners {
|
||||
config.AddHostKey(signer)
|
||||
}
|
||||
if srv.PasswordHandler == nil && srv.PublicKeyHandler == nil {
|
||||
if srv.PasswordHandler == nil && srv.PublicKeyHandler == nil && srv.KeyboardInteractiveHandler == nil {
|
||||
config.NoClientAuth = true
|
||||
}
|
||||
if srv.Version != "" {
|
||||
|
Reference in New Issue
Block a user