Adding a key to a KeyContainer...
From: Øyvind Habberstad (oyvindhabberstad@hotmail.com)
Date: 09/18/02
- Next message: E-: "Obtain User Login Name?"
- Previous message: jorge: "Help - Security for downloaded code"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: oyvindhabberstad@hotmail.com (Øyvind Habberstad) Date: 18 Sep 2002 06:09:04 -0700
Hi,
In short: What happens when I add a new key to a KeyContainer?
Explanation:
I'm adding a privatekey generated in OpenSSL into a KeyContainer using
the following code:
private void addKeyToKeyContainer( string pathPrivKey ,
string keyContainerName ) {
CspParameters cspParams = new CspParameters(PROVIDER_RSA_FULL);
cspParams.KeyContainerName = keyContainerName;
cspParams.Flags = CspProviderFlags.UseMachineKeyStore;
RSACryptoServiceProvider rsa = new
RSACryptoServiceProvider(cspParams);
rsa.ImportParameters( createRSAParametersFromPrivKey( pathPrivKey)
);
rsa.PersistKeyInCsp = true;
}
After adding the key the following file is updated:
C:\Documents and Settings\All Users\Application
Data\Microsoft\Crypto\RSA\MachineKeys\9351a4083.... (something very
long)
1. When adding a new key to the same KeyContainer, do I overwrite an
excisting key?
2. If a KeyContainer can contain several keys how do I know wich key
I'm using?
3. When I add a key to one or more KeyContainers there is only one
file that are updated and the file size does not increase noe matter
how many keys I add, why is that?
Any help is appreciated!!
Cheers, Øyvind.
- Next message: E-: "Obtain User Login Name?"
- Previous message: jorge: "Help - Security for downloaded code"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]