|
User can encrypt a database to prevent any unauthorized access to data stored on a disk. Daffodil DB allows user to make use of above mentioned encryption algorithms. Encryption algorithms use a block of bytes as the secret key. The key length is algorithm-specific; popular algorithms use keys of 64,128, or 256 bits in length. Important: Users need to set ENCRYPTIONSUPPORT property as true at time of creation of a Daffodil DB database. Example:
String url = "jdbc:daffodilDB_embedded:STUDENTDB;create=true";
In the above stated example, a database named STUDENTDB is created which will be stored in encrypted form using TEA encryption algorithm & encryption key is daisy. |
