Encryption / Decryption sqlite database using java
Is there any free library / Java API to encrypt and decrypt sqlite database in java ? I am using SQLite JDBC dri开发者_如何学运维ver as part of xerial project.
Thanks, Deep
There is an encryption library (sqlite-crypt) available in C, but if you want to do it in Java, I would simply encrypt the file like any other file. See this example of file encryption/decryption in Java.
精彩评论