Re: Strange problem with X509Certificate2 on Windows 2003
I don't use the user store for keys. I just load the key from a file by
byte[] klic = File.ReadAllBytes(PrivateKeyFile);
X509Certificate2 x509 = new X509Certificate2(klic, PrivateKeyPassword);
and this fails on Windows 2003.
BTW, could you please give me some links to some good information about
using the key store?
Mirek.
.
Relevant Pages
- Re: Security - Best Encryption Tool
... "I like its [DPAPI] concepts of Machine Store for web applications ... and User Store for windows form applications." ... (microsoft.public.vb.general.discussion) - Re: Security - Best Encryption Tool
... "I like its [DPAPI] concepts of Machine Store for web applications ... and User Store for windows form applications." ... (microsoft.public.dotnet.distributed_apps) - Re: Security - Best Encryption Tool
... "I like its [DPAPI] concepts of Machine Store for web applications ... and User Store for windows form applications." ... (microsoft.public.dotnet.framework.aspnet.buildingcontrols) - Re: Security - Best Encryption Tool
... "I like its [DPAPI] concepts of Machine Store for web applications ... and User Store for windows form applications." ... (microsoft.public.dotnet.framework.aspnet.security) - Re: Security - Best Encryption Tool
... "I like its [DPAPI] concepts of Machine Store for web applications ... and User Store for windows form applications." ... (microsoft.public.dotnet.framework.component_services) |
|