6
votes
2answers
104 views
How to properly do private key management
Has anyone got practical experience or a reference for a scheme that implements a key management scheme that would comply with the PCI DSS security standard?
There are obviously quite a few …
5
votes
5answers
255 views
Where can I learn about proven methods for sharing cryptographic keys?
Suppose that a group wants to encrypt some information, then share the encryption key among the group members in a way that requires the consensus of the group to decrypt the information. I'm …
0
votes
1answer
570 views
How to store the AES Rijndael generated Key to the database?
Hi,
When creating the instance, the KEY and IV are generated for me.
RijndaelManaged myRijndael = new RijndaelManaged();
How can I store the Key in my database or web.config file?
And in what …
0
votes
3answers
118 views
Why shouldn’t a private key be stored verbatim or in plain text on the local computer?
I was reading this:
http://msdn.microsoft.com/en-us/library/tswxhw92(VS.80).aspx
The first sentence says: "Asymmetric private keys should never be stored verbatim or in plain text on the local …
