Development

Coding
Development PHP

PHP: Encryption/Decryption

This code works with a JSON stream encrypted with CryptoJS. You can use PHP with openSSL support to decrypt the data stream using your password. Decrypt /** * Decrypt data from a CryptoJS json encoding string * * @param mixed $passphrase * @param mixed $jsonString * @return mixed */ function Decrypt($passphrase, $jsonString){ $jsondata = json_decode($jsonString, […]

Read More