├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── bin └── phpcrypter ├── composer.json ├── src └── Console │ └── Commands │ ├── Decrypt.php │ ├── Encrypt.php │ └── Generate.php └── stubs └── php └── ext ├── openssl └── php_openssl.h └── skeleton ├── config.m4 ├── config.w32 ├── skeleton.c └── skeleton.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpcrypter 2 | /vendor/ 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/README.md -------------------------------------------------------------------------------- /bin/phpcrypter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/bin/phpcrypter -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/composer.json -------------------------------------------------------------------------------- /src/Console/Commands/Decrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/src/Console/Commands/Decrypt.php -------------------------------------------------------------------------------- /src/Console/Commands/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/src/Console/Commands/Encrypt.php -------------------------------------------------------------------------------- /src/Console/Commands/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/src/Console/Commands/Generate.php -------------------------------------------------------------------------------- /stubs/php/ext/openssl/php_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/stubs/php/ext/openssl/php_openssl.h -------------------------------------------------------------------------------- /stubs/php/ext/skeleton/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/stubs/php/ext/skeleton/config.m4 -------------------------------------------------------------------------------- /stubs/php/ext/skeleton/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/stubs/php/ext/skeleton/config.w32 -------------------------------------------------------------------------------- /stubs/php/ext/skeleton/skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/stubs/php/ext/skeleton/skeleton.c -------------------------------------------------------------------------------- /stubs/php/ext/skeleton/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvpearse/phpcrypter/HEAD/stubs/php/ext/skeleton/skeleton.h --------------------------------------------------------------------------------