vote up 0 vote down star

I have the following code:

const int PROVIDER_RSA_FULL = 1;
const string CONTAINER_NAME = "Example";
CspParameters cspParams;
cspParams = new CspParameters(PROVIDER_RSA_FULL);
cspParams.KeyContainerName = CONTAINER_NAME;
cspParams.Flags = CspProviderFlags.UseMachineKeyStore;
cspParams.ProviderName = "Microsoft Strong Cryptographic Provider";
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(cspParams);

As I understand it, a keypair is generated automatically and then becomes the referenced key pair using the KeyContainerName "Example".

I'm using a dedicated host. I want to be sure that our hosting company are aware of this information being important, making sure it's backed up, and not losing it, because then all the information I have encrypted and stored in a database will be useless.

I can't find any word in MSDN about how it works in the background.

flag

1 Answer

vote up 0 vote down check

The Key containers are stored in the file system. The directories are Machine Keys: documents and settings\all users\application\data\microsoft\crypto and subdirectories.

Be aware that you can not "reuse" those keys on other machines or if you are going to rebuild your machine!

Ref.

link|flag
Thanks, helpful answer, but do you have a source? – Christopher Done Oct 4 at 10:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.