Reputation: 149
I'm working on a project and I want to protect information which is in SQLite database. I want to use algorithms such as RC4, DES, AES. I use C#. Please help me!
Upvotes: 1
Views: 5495
Reputation: 8531
As discussed here, the easiest way is to use the System.Data.Sqlite wrapper and include a password in the connection string. This old forum thread says that the wrapper uses RC4 via the Microsoft Crypto API.
Upvotes: 1