Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypt 1.5 million records and decrypting.

Status
Not open for further replies.

manohars

Programmer
Feb 28, 2004
97
US
Hi,

I have a requirement, where the database data should be encrypted during storing and decrypted during retrieving. What are the ways or tools available for this. Also, kindly let me know of the ways to improve performance in this case. I urgently need these information.

Thanks in Advance,
Manohar

 
Have a look at following links, most encryption use an API prior to insertion of the database, and these calls into the API then decrypt or encrypt the data.


the simplest of this way of encrypting data using .NET architecture is

there is always a performance overhead as at some stage the data needs to go through an algorithm to encrypt it, also the actual storage of the data will increase as generally you will need binary field types to store the encrypted data.

Also things to watch for, when encrypting data is making sure you only encrypt what you need, not just for performance, but also encrypted data is very hard to manage when you require searches. But all this should be explained on the different sites.


The last article listed above is probably the 1st you should read as it reviews some commercial sofwtare alternatives.,


"I'm living so far beyond my income that we may almost be said to be living apart
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top