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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There are multiple ways to do this:
And there are probably more ways to do this. Hope this helps. |
|||||
|
|
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. |
|||
|
|
|
SQLiteConnection.SetPassword I think you also have to set the Password= parameter in the connection string. |
|||
|
|