Architecture of a secure application that encrypts data in the database.
Posted
by Przemyslaw Rózycki
on Stack Overflow
See other posts from Stack Overflow
or by Przemyslaw Rózycki
Published on 2010-04-16T13:18:55Z
Indexed on
2010/04/16
13:23 UTC
Read the original article
Hit count: 222
I need to design an application that protects some data in a database against root attack. It means, that even if the aggressor takes control over the machine where data is stored or machine with the application server, he can't read some business critical data from the database. This is a customer's requirement. I'm going to encrypt data with some assymetric algorithm and I need some good ideas, where to store private keys, so that data is secure as well as the application usability was quite comfortable? We can assume, for simplicity, that only one key pair is used.
© Stack Overflow or respective owner