Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
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 '09 at 3:16
I think he wants to use a sqlite3 database and encrypt that file. – Ben Alpert Mar 9 '09 at 3:18
Ben Alpert got it right – acidzombie24 Mar 9 '09 at 3:26

3 Answers

up vote 7 down vote accepted

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.

share|improve this answer
If you use EFS remember to back up the keys! – RobS Apr 26 '09 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 '09 at 6:47

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.

share|improve this answer

SQLiteConnection.SetPassword

SQLite ADO.NET provider

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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