├── .travis.yml ├── LICENSE ├── README.md ├── fixtures ├── id_rsa_enc_aes128_asdf ├── id_rsa_enc_aes128_asdf.pub ├── id_rsa_enc_aes192_asdf ├── id_rsa_enc_aes256_asdf ├── id_rsa_enc_des3_asdf ├── id_rsa_enc_des_asdf ├── id_rsa_pem.pub ├── id_rsa_unencrypted └── id_rsa_unencrypted.pub ├── index.js ├── package.json └── test.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_aes128_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_aes128_asdf -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_aes128_asdf.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_aes128_asdf.pub -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_aes192_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_aes192_asdf -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_aes256_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_aes256_asdf -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_des3_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_des3_asdf -------------------------------------------------------------------------------- /fixtures/id_rsa_enc_des_asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_enc_des_asdf -------------------------------------------------------------------------------- /fixtures/id_rsa_pem.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_pem.pub -------------------------------------------------------------------------------- /fixtures/id_rsa_unencrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_unencrypted -------------------------------------------------------------------------------- /fixtures/id_rsa_unencrypted.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/fixtures/id_rsa_unencrypted.pub -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacs/ssh-key-decrypt/HEAD/test.js --------------------------------------------------------------------------------