From 93c250f6e814dec93a04a00889501543e5e5d57c Mon Sep 17 00:00:00 2001 From: Sean Date: Thu, 30 Aug 2018 16:54:03 -0700 Subject: [PATCH 1/2] feat: add PHP implementation --- PHP/XOREncryption.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 PHP/XOREncryption.php diff --git a/PHP/XOREncryption.php b/PHP/XOREncryption.php new file mode 100644 index 0000000..6946b73 --- /dev/null +++ b/PHP/XOREncryption.php @@ -0,0 +1,18 @@ + Date: Thu, 30 Aug 2018 16:54:57 -0700 Subject: [PATCH 2/2] docs: add PHP implementation link to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 12f88cd..7e2c1ff 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Simple implementation of XOR Encryption/Decrypting in various languages, includi - [JavaScript \(Node.js Compatible\)](JavaScript/XOREncryption.js) - [Kotlin](Kotlin/XOREncryption.kt) - [Objective-C](Objective-C/main.m) +- [PHP](PHP/XOREncryption.php) - [Python](Python/XOREncryption.py) - [Ruby](Ruby/xor.rb) - [Visual Basic.NET](VB.NET/XORCrypto.vb)