Database encryption
Moderator: SourceGear
Database encryption
I noticed that you encrypt sprocs and triggers in the database for vault. I have also noticed that this encryption doesn't seem to have much of a performance hit. As database and application developer, I am curious what you are using for this encryption. Thank you in advance.
The manner in which the stored procedures and triggers are encrypted are different from the data stored within the database.
If you are looking at protecting data stored within the database, take a look at subject material regardging SHA-1, MD5, Triple DES, RSA. I'd recommend finding a book from Bruce Schneier regarding the topic.
If you are wanting to prevent your stored procedures / triggers from being seen ( or replicated ) within SQL Server, take a look at SQL Server's WITH ENCRYPTION flag.
If you are looking at protecting data stored within the database, take a look at subject material regardging SHA-1, MD5, Triple DES, RSA. I'd recommend finding a book from Bruce Schneier regarding the topic.
If you are wanting to prevent your stored procedures / triggers from being seen ( or replicated ) within SQL Server, take a look at SQL Server's WITH ENCRYPTION flag.
Jeff Clausius
SourceGear
SourceGear