code.google.com/p/go.crypto/ssh is now at golang.org/x/crypto/ssh as of https://code.google.com/p/go/source/detail?spec=svn.crypto.69e2a90ed92d03812364aeb947b7068dc42e561e&repo=crypto&r=8fec09c61d5d66f460d227fd1df3473d7e015bc6 Using the code.google.com import redirects properly, but runs into issues if you try to use a subpackage of `ssh`, e.g. `agent` which refers to golang.org/x/crypto/ssh causing conflicts if your types expect code.google.com/p/go.crypto/ssh. This is a precursor to a PR for #1066.
28 lines
795 B
Go
28 lines
795 B
Go
package ssh
|
|
|
|
import (
|
|
"golang.org/x/crypto/ssh"
|
|
"log"
|
|
)
|
|
|
|
// An implementation of ssh.KeyboardInteractiveChallenge that simply sends
|
|
// back the password for all questions. The questions are logged.
|
|
func PasswordKeyboardInteractive(password string) ssh.KeyboardInteractiveChallenge {
|
|
return func(user, instruction string, questions []string, echos []bool) ([]string, error) {
|
|
log.Printf("Keyboard interactive challenge: ")
|
|
log.Printf("-- User: %s", user)
|
|
log.Printf("-- Instructions: %s", instruction)
|
|
for i, question := range questions {
|
|
log.Printf("-- Question %d: %s", i+1, question)
|
|
}
|
|
|
|
// Just send the password back for all questions
|
|
answers := make([]string, len(questions))
|
|
for i, _ := range answers {
|
|
answers[i] = string(password)
|
|
}
|
|
|
|
return answers, nil
|
|
}
|
|
}
|