I'm in the process of prototyping a file upload system for a service that needs a basic form of encryption for the files uploaded by users. All of the files uploaded will be uploaded to the same directory in which users can download and upload files freely, however only authorized users will be able to delete files from the uploads.
With this in mind, I need to know the best way to encrypt these files (via crypt() or similar) for storage in a non-public-accessible directory for this purpose. I considered using the base 64 encode functions built into PHP to do this, but it seemed as if someone would be able to write a PHP script on another server to base 64 decrypt the files stored on my server, thereby rendering the encryption protection completely useless.
In summary, I need to know the best way to implement this (i.e. which functions or classes to use) so that it meets the following criteria:
- The function needs to be reversible in a way that only users logged in via PHP's
$_SESSIONvariables can decrypt the files that are encrypted. - Encryption needs to affect all file types, whether it be images, text, binaries, documents, and decrypting the files must yield a file identical to the file that was encrypted (i.e. with the header intact).
I may be worried about more than necessary, but I would like to make this as easy to use as possible with basic security. I'm not protecting anything particularly important such as credit card information or trade secrets, but the users I am designing for would like to have the peace-of-mind to know that there are at least some measures in place to prevent hacking of the files uploaded.