In my (PHP-5) application I have to write some records to a table in my
database, which I don't want even my clients using the system to be able
to read.
This is not a problem in National Security; I simply want the contents
of records in this file to remain unreadable, even by the client's IT
supervisor who can look at the contents of the (MySQL) database using
phpMyAdmin.
I intend, periodically, to download these records to my local machine,
where I plan to decrypt and analyse them.
I am running my application on a commercial Web server where the wcrypt
(?) library has not been implemented.
What do I do?
I think I need an asymmetric encryption algorithm so that I can decrypt
the records locally without providing any hints on keys to the Web
Server, and I would ideally like look for something implemented as a PHP
Class on the Web Server so that I do not impinge on the limitations of
his PHP installation.
Help, please.
database, which I don't want even my clients using the system to be able
to read.
This is not a problem in National Security; I simply want the contents
of records in this file to remain unreadable, even by the client's IT
supervisor who can look at the contents of the (MySQL) database using
phpMyAdmin.
I intend, periodically, to download these records to my local machine,
where I plan to decrypt and analyse them.
I am running my application on a commercial Web server where the wcrypt
(?) library has not been implemented.
What do I do?
I think I need an asymmetric encryption algorithm so that I can decrypt
the records locally without providing any hints on keys to the Web
Server, and I would ideally like look for something implemented as a PHP
Class on the Web Server so that I do not impinge on the limitations of
his PHP installation.
Help, please.
Comment