in reply to Is there any way to add password based encryption to a DBM database?
It sounds as if the simple solution would be to encrypt the data going into the database, and decrypt it on retrieval. Crypt::xDBM_File will do that for you. You'll also need an acceptable encryption module such as Crypt::DES.
A simpler solution for this would be to use strict file protection, if the program is run by a single user, or to move the data to a database such as MySQL which provides built-in password protection.
|
|---|