vote up 0 vote down star
1

How do i encrypt a file in C#? i would like to use a db (like sqlite) and use it normally except have the file encrypted and have my user enter his password before having access to the database.

flag

41% accept rate
I think you might be confused here, what would be the file that is encrypted or are you talking about the connection to the database? Also, are you wanting to use a table in the db to authenticate a user or the db's authentication? – Suroot Mar 9 at 3:16
I think he wants to use a sqlite3 database and encrypt that file. – Ben Alpert Mar 9 at 3:18
Ben Alpert got it right – acidzombie24 Mar 9 at 3:26

3 Answers

vote up 0 vote down

SQLiteConnection.SetPassword

SQLite ADO.NET provider

I think you also have to set the Password= parameter in the connection string.

link|flag
vote up 7 vote down

There are multiple ways to do this:

  • Use DPApi (Data Protection API), which is supplied in the ProtectedData (System.Security.Cryptography class), and use an entrophy based on a password
  • Use SQL Compact Edition, which has this built in
  • Generate a key based on a password and encrypt/decrypt the file with that
  • Use Encrypted File System, so the OS will take care of encryption on the disk. (Consumer editions of Windows don't have this though.)

And there are probably more ways to do this.

Hope this helps.

link|flag
If you use EFS remember to back up the keys! – Rob Sanders Apr 26 at 9:47
As with any security application, encrypted data without a key is like a locked door without a key. You may be able to get in, but it is going to take a lot of time :) – Jeroen Landheer Apr 28 at 6:47
vote up 2 vote down

SQL Server Compact Edition (it's an inprocess database server like SQLite) allows you to encrypt the file without writing any additional code.

To change the password, use the Engine.Compact method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.