Blake
Blake

Reputation: 149

How to encrypt/decrypt data in SQLite database?

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

Answers (1)

Ed Power
Ed Power

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

Related Questions