├── .gitignore ├── README.md ├── XORCipher.php ├── example.php └── plaintext.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sathoro/php-xor-cipher/HEAD/README.md -------------------------------------------------------------------------------- /XORCipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sathoro/php-xor-cipher/HEAD/XORCipher.php -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sathoro/php-xor-cipher/HEAD/example.php -------------------------------------------------------------------------------- /plaintext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sathoro/php-xor-cipher/HEAD/plaintext.txt --------------------------------------------------------------------------------