Tagged Questions
The key-management tag has no wiki summary.
15
votes
2answers
2k 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 ...
12
votes
4answers
649 views
data encryption and key management in c#
Which route to take, whats the pros and cons, which is more secure..
1) Generate AES key, encrypt the data with it and then encrypt the AES key with RSA, save the encrypted data and encrypted AES key ...
7
votes
5answers
560 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 ...
3
votes
2answers
3k views
Android Secure Storage
I want to store some small but critical piece of information such as AES keys in my Android application. What would be the recommended way to do this? I do not want to hardcode keys as part of my ...
2
votes
1answer
602 views
Encryption Key Management Software and Transparent Data Encryption MySQL
For PCI compliance, is there any recommended Encryption Key Management Software? Open source preferable, but commercial is ok too. Is there a tool or software that provides both?
2
votes
2answers
278 views
How to extract private keys from an ssh-agent?
ssh-add -l displays that I have 3 RSA keys added to my SSH agent. ssh-add -L displays the public keys. How do I get the private keys as well, so that I can save them to a file? Or is it by design that ...
2
votes
3answers
278 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 ...
1
vote
2answers
378 views
Best practices for key/certificate management
I'm deploying hundreds/thousands of small servers that communicate with my hosted mothership via HTTPS and ssh.
What are the best practices for managing SSL client certs (for https) and ssh keys, ...
1
vote
1answer
2k views
How to store the AES Rijndael generated Key to the database?
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 format?
...
0
votes
0answers
20 views
Is there a command line tool to generate symmetric keys in a Java keystore?
I am writing a procedure about key renewing for my application. This procedure will be executed by a sysadmin every year or so.
In my application, there is a symmetric key used to cipher some data ...