├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── Codeaken │ └── SshKey │ ├── Exception │ ├── FileNotFoundException.php │ ├── FileReadException.php │ └── LoadKeyException.php │ ├── SshKey.php │ ├── SshKeyPair.php │ ├── SshPrivateKey.php │ └── SshPublicKey.php └── tests ├── SshKeyTest.php └── keys ├── id_nopass_rsa ├── id_nopass_rsa.pub ├── id_pass_rsa └── id_pass_rsa.pub /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Codeaken/SshKey/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/Exception/FileNotFoundException.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/Exception/FileReadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/Exception/FileReadException.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/Exception/LoadKeyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/Exception/LoadKeyException.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/SshKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/SshKey.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/SshKeyPair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/SshKeyPair.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/SshPrivateKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/SshPrivateKey.php -------------------------------------------------------------------------------- /src/Codeaken/SshKey/SshPublicKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/src/Codeaken/SshKey/SshPublicKey.php -------------------------------------------------------------------------------- /tests/SshKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/tests/SshKeyTest.php -------------------------------------------------------------------------------- /tests/keys/id_nopass_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/tests/keys/id_nopass_rsa -------------------------------------------------------------------------------- /tests/keys/id_nopass_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/tests/keys/id_nopass_rsa.pub -------------------------------------------------------------------------------- /tests/keys/id_pass_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/tests/keys/id_pass_rsa -------------------------------------------------------------------------------- /tests/keys/id_pass_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaken/sshkey/HEAD/tests/keys/id_pass_rsa.pub --------------------------------------------------------------------------------