├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Tests └── EncrytionTest.php ├── composer.json ├── examples └── example.php ├── phpcs.xml └── src └── Encryption.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/README.md -------------------------------------------------------------------------------- /Tests/EncrytionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/Tests/EncrytionTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/composer.json -------------------------------------------------------------------------------- /examples/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/examples/example.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/phpcs.xml -------------------------------------------------------------------------------- /src/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pentagonal/SimpleEncryption/HEAD/src/Encryption.php --------------------------------------------------------------------------------