Search This Blog

Saturday, May 8, 2010

Creating a global variable on the fly. [PHP ENCRYPTION]

Programmer Question


Is there a way to dynamically create constant variables on the fly?



The idea is that upon logging into the system, a user would be asked to upload a small text file that would be fread, and assigned to a var that would be accessible throughout the system.



If this is possible, just to be clear, would this variable then only be accessible to that user and only while the session is alive?



Security being the main concern here, would it be more practical to store the var in a session variable?



The plan:



Data in the db will be encrypted via mcrypt, and the key will be stored on USB thumbdrives. The user will insert the thumbdrive when going to access the system. Upon logging in, the app will prompt the user to upload the key. They will navigate to the thumbdrive and key. Via fopen and fread, the key will be assigned to a global var which will then allow access to encrypted data, and will be used to encrypt new info being entered to the db.
When the user logs out, or session times out, the global var will become empty.



Thanks!





Find the answer here

No comments:

Post a Comment

Related Posts with Thumbnails