├── .gitignore ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ └── Sirupsen │ │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── examples │ │ ├── basic │ │ │ └── basic.go │ │ └── hook │ │ │ └── hook.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── formatter_bench_test.go │ │ ├── hook_test.go │ │ ├── hooks.go │ │ ├── hooks │ │ ├── airbrake │ │ │ ├── airbrake.go │ │ │ └── airbrake_test.go │ │ ├── papertrail │ │ │ ├── README.md │ │ │ ├── papertrail.go │ │ │ └── papertrail_test.go │ │ ├── sentry │ │ │ ├── README.md │ │ │ ├── sentry.go │ │ │ └── sentry_test.go │ │ └── syslog │ │ │ ├── README.md │ │ │ ├── syslog.go │ │ │ └── syslog_test.go │ │ ├── json_formatter.go │ │ ├── json_formatter_test.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ ├── terminal_darwin.go │ │ ├── terminal_freebsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_openbsd.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ ├── text_formatter_test.go │ │ └── writer.go │ └── 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 ├── README.md ├── blacklist.go ├── blacklist ├── dsa-1024 ├── rsa-1023 ├── rsa-1024 ├── rsa-2047 ├── rsa-2048 ├── rsa-4096 └── rsa-8192 ├── key.go ├── main.go └── server.go /.gitignore: -------------------------------------------------------------------------------- 1 | checkmysshkey 2 | -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/README.md -------------------------------------------------------------------------------- /blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist.go -------------------------------------------------------------------------------- /blacklist/dsa-1024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/dsa-1024 -------------------------------------------------------------------------------- /blacklist/rsa-1023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-1023 -------------------------------------------------------------------------------- /blacklist/rsa-1024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-1024 -------------------------------------------------------------------------------- /blacklist/rsa-2047: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-2047 -------------------------------------------------------------------------------- /blacklist/rsa-2048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-2048 -------------------------------------------------------------------------------- /blacklist/rsa-4096: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-4096 -------------------------------------------------------------------------------- /blacklist/rsa-8192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/blacklist/rsa-8192 -------------------------------------------------------------------------------- /key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/key.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/main.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbostock/sshkeycheck/HEAD/server.go --------------------------------------------------------------------------------