Reputation: 5785
I'm looking for encrypted SQL database, I'm going to install it on client's machines, and I don't want client to database directly.
I know this is not 100% secure, and I'm not interested in SQL Server, SQLite or Oracle.
If you know any solutions of this kind please let me know.
Thanks.
Upvotes: 0
Views: 400
Reputation: 557
One more idea: You can use any kind of DB and encrypt/decrypt data upon saving/retrieving. This way, you are not required to investigate databases with encryption support. You will be handling this operation to your programming language, most common languages have the capability to deal with encryption and decryotion.
Upvotes: 2
Reputation: 19872
Given your requirements, I suggest you use MySQL
. It supports both Windows and Linux. It's free and open source and has concurrency support. Also it has cryptography support.
Upvotes: 1