├── LICENSE ├── README.md ├── src └── cmd │ └── gsftp │ └── main.go └── vendor ├── manifest └── src ├── github.com ├── kr │ └── fs │ │ ├── LICENSE │ │ ├── Readme │ │ ├── example_test.go │ │ ├── filesystem.go │ │ ├── walk.go │ │ └── walk_test.go └── pkg │ └── sftp │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── attrs.go │ ├── attrs_test.go │ ├── client.go │ ├── client_integration_test.go │ ├── client_test.go │ ├── debug.go │ ├── example_test.go │ ├── examples │ ├── buffered-read-benchmark │ │ └── main.go │ ├── buffered-write-benchmark │ │ └── main.go │ ├── streaming-read-benchmark │ │ └── main.go │ └── streaming-write-benchmark │ │ └── main.go │ ├── packet.go │ ├── packet_test.go │ ├── release.go │ ├── sftp.go │ └── wercker.yml └── golang.org └── x └── crypto └── ssh ├── agent ├── client.go ├── client_test.go ├── forward.go ├── keyring.go ├── server.go ├── server_test.go └── testdata_test.go ├── benchmark_test.go ├── buffer.go ├── buffer_test.go ├── certs.go ├── certs_test.go ├── channel.go ├── cipher.go ├── cipher_test.go ├── client.go ├── client_auth.go ├── client_auth_test.go ├── client_test.go ├── common.go ├── connection.go ├── doc.go ├── example_test.go ├── handshake.go ├── handshake_test.go ├── kex.go ├── kex_test.go ├── keys.go ├── keys_test.go ├── mac.go ├── mempipe_test.go ├── messages.go ├── messages_test.go ├── mux.go ├── mux_test.go ├── server.go ├── session.go ├── session_test.go ├── tcpip.go ├── tcpip_test.go ├── terminal ├── terminal.go ├── terminal_test.go ├── util.go ├── util_bsd.go ├── util_linux.go └── util_windows.go ├── test ├── agent_unix_test.go ├── cert_test.go ├── doc.go ├── forward_unix_test.go ├── session_test.go ├── tcpip_test.go ├── test_unix_test.go └── testdata_test.go ├── testdata ├── doc.go └── keys.go ├── testdata_test.go ├── transport.go └── transport_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/README.md -------------------------------------------------------------------------------- /src/cmd/gsftp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/src/cmd/gsftp/main.go -------------------------------------------------------------------------------- /vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/manifest -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/kr/fs/LICENSE -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/Readme: -------------------------------------------------------------------------------- 1 | Filesystem Package 2 | 3 | http://godoc.org/github.com/kr/fs 4 | -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/kr/fs/example_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/kr/fs/filesystem.go -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/kr/fs/walk.go -------------------------------------------------------------------------------- /vendor/src/github.com/kr/fs/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/kr/fs/walk_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/LICENSE -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/README.md -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/attrs.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/attrs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/attrs_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/client.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/client_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/client_integration_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/client_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/debug.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/example_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/examples/buffered-read-benchmark/main.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/examples/buffered-write-benchmark/main.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/examples/streaming-read-benchmark/main.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/examples/streaming-write-benchmark/main.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/packet.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/packet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/packet_test.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/release.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/sftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/github.com/pkg/sftp/sftp.go -------------------------------------------------------------------------------- /vendor/src/github.com/pkg/sftp/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang 2 | -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/terminal_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/agent_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/agent_unix_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/forward_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/forward_unix_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/tcpip_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/src/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constabulary/example-gsftp/HEAD/vendor/src/golang.org/x/crypto/ssh/transport_test.go --------------------------------------------------------------------------------