5
votes
11answers
675 views
Symmetric key storage
My company is going to be storing sensitive data for our customers, and will be encrypting data using one of the managed .NET encryption algorithm classes. Most of the work is done, but we haven't …
3
votes
6answers
753 views
What is the performance difference of pki to symmetric encryption?
We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant.
I think that I know that PKI is much slower and more complex …
2
votes
1answer
152 views
Why does changing one bit in a Triple DES key or initial value not give different encrypted data?
I'm using pyDes to encrypt some data. I wanted to demonstrate that if you change even one bit in the key or initial value, the encrypted data would be totally different. I set up the 16-byte key to …
2
votes
2answers
559 views
SQL Server 2005 - Restoring an encrypted DB on a different server
I have backed up an encrypted DB (symmetric key/certificate) and
restored it on a different server.
Unfortuantely we're having problems with the decryption... hoping
someone can help.
In the …
0
votes
3answers
63 views
SQL Symmetric Key and opening it from C#
Hi, I am trying to encrypt data in SQL Server via a Symmetric key. When a user submits data through a web form, I would like for the data to be encrypted, using my Symmetric Key that I have saved …
0
votes
2answers
93 views
RijndaelManaged Key generation
I need to encrypt data and store it in a file and later be able to decrypt it back.
For this I am using RijndaelManaged class. Now I do not want to keep the key hardcoded in the code. After some …
0
votes
1answer
117 views
how to wrap/store the key of TripleDESCryptoServiceProvider
I'm using DES encryption, and I want to store the key of TripleDESCryptoServiceProvider.
But the key consists of (Key + IV),
I was trying to save them in an XML file using
XmlTextWriter
…
