Cryptography

suggest change

Remarks

/* Base64 Encoded Encryption / enc_data = base64_encode(openssl_encrypt(data, $method, $password, true, $iv) ); / Decode and Decrypt */ dec_data = base64_decode(openssl_decrypt(enc_data, $method, $password, true, $iv) );

This way of doing the encryption and encoding would not work as presented as you are decrypting the code before unencoding the base 64.

You would need to do this in the opposite order.

/This way instead/ enc_data = base64_encode(openssl_encrypt(data, $method, $pass, true, $iv)); dec_data = openssl_decrypt(base64_decode(enc_data), $method, $pass, true, $iv);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents