From c2883aad47e00aac86a96a6892a4293d36de14ae Mon Sep 17 00:00:00 2001 From: Aidan Steele Date: Mon, 7 Jan 2019 08:09:35 +1100 Subject: [PATCH] Import x/net/crypto/ssh with alias gossh --- ssh.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh.go b/ssh.go index cf11499..1d339c4 100644 --- a/ssh.go +++ b/ssh.go @@ -2,7 +2,7 @@ package ssh import ( "crypto/subtle" - "golang.org/x/crypto/ssh" + gossh "golang.org/x/crypto/ssh" "net" ) @@ -41,7 +41,7 @@ type PublicKeyHandler func(ctx Context, key PublicKey) bool type PasswordHandler func(ctx Context, password string) bool // KeyboardInteractiveHandler is a callback for performing keyboard-interactive authentication. -type KeyboardInteractiveHandler func(ctx Context, challenger ssh.KeyboardInteractiveChallenge) bool +type KeyboardInteractiveHandler func(ctx Context, challenger gossh.KeyboardInteractiveChallenge) bool // PtyCallback is a hook for allowing PTY sessions. type PtyCallback func(ctx Context, pty Pty) bool