SQLite 加密 [sqlite encryption]

 

资料来源:https://stackoverflow.com/questions/5669905/sqlite-with-encryption-password-protection

 

SQLite has hooks built-in for encryption which are not used in the normal distribution, but here are a few implementations I know of:

SEE – The official implementation.
wxSQLite – A wxWidgets style C++ wrapper that also implements SQLite’s encryption.
SQLCipher – Uses openSSL’s libcrypto to implement.
SQLiteCrypt – Custom implementation, modified API.
botansqlite3 – botansqlite3 is an encryption codec for SQLite3 that can use any algorithms in Botan for encryption.
SQLiteCrypto – SQLiteCrypto is The Easier Way To Encrypt Sqlite Database By AES-256 and SHA-256

 

 

 



 


相关文章