Encrypting Files With AES-256 In PHP
This post is part of a series about symmetric encryption with AES-256 in PHP.
Now that we covered how to encrypt text in PHP, you might want to also be able to encrypt files. Luckily, most of the logic to do that already exists in the class we created, so implementing this feature is relatively easy.
By paranerd | Oct 1, 2018
Encrypting Text With AES-256 In JavaScript
Maybe you followed my series on symmetric encryption with AES in PHP. You can check it out here if you’re interested! What if I told you, that you don’t even need a server to do that but might as well encrypt text using AES right in your browser? Sounds crazy? Well, you’re in for a treat!
By paranerd | Oct 1, 2018