Tagged Questions

12
votes
4answers
686 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 ...
3
votes
2answers
741 views

Securely Storing Optional Entropy While Using DPAPI

So I am trying to store the symmetric key using DPAPI. All is well and great, but what to do with the entropy? This answered question here really doesn't provide enough insight. It seems like a ...
2
votes
2answers
145 views

How can I protect the entropy?

DPAPI is great for protecting sensitive information! Unfortunately, the DPAPI "optional entropy" is basically another piece of sensitive information that must be protected. Ironic. What are some ...
2
votes
1answer
382 views

Why do I get different outputs when encrypting using DPAPI?

I'm using DPAPI in C++ to encrypt some data that I need to store in a file. The thing is that I need to read that file from C#, so I need to be able to: C++ encrypt, C++ decrypt (is working good) C# ...
1
vote
1answer
33 views

Using DPAPI for signing and verifying data

I am currently trying to undertand how best to implement signing/verification in a .NET 4.0 C# environment. My requirment is to be able to sign data within my system as one 'user', at some point ...
1
vote
1answer
438 views

Attempt to set permissions on a KeyContainer in C# is having no effect

I'm using the following code in an attempt to programatically allow the NetworkService account to have access to a key: var RSA = new RSACryptoServiceProvider( new CspParameters() { ...