Tagged Questions

3
votes
4answers
2k views

Decode a PKCS#12 file

I am looking for ways to decode a PKCS#12 file in .NET, I need to extract the private key and any certificates so that i can programatically access the following. modulus publicExponent ...
2
votes
2answers
2k views

How can constructing an X509Certificate2 from a PKCS#12 byte array throw CryptographicException(“The system cannot find the file specified.”)?

I'm trying to construct an X509Certificate2 from a PKCS#12 blob in a byte array and getting a rather puzzling error. This code is running in a desktop application with administrator rights on Windows ...
1
vote
3answers
170 views

How to programmatically import a pfx with a chain of certificates into the certificate store?

I am trying to programmatically import a X509 certificate (pfx / PKCS#12) in my local machine's certificate store. This particular certificate has a chain of certificates, the certification path looks ...
1
vote
1answer
156 views

Mono xbuild error CS1548 - key file has incorrect format

So I'm trying to get a VS2010 C# project to go cross-platform. First goal is build it in Mono 2.10.5 for Windows. I have not touched any code yet - I'm starting with xbuild's recent ability to build ...
1
vote
3answers
2k views

How to get private key from PKCS#12 (.p12) file using C#

Im trying to sign some data using PKCS#12 certificate ,however i have problem with obtaining private key from PKCS#12 (.p12) file. public byte[] sign(string text) { string password = ...
0
votes
0answers
33 views

X509Certificate2 export Fails when exporting to X509ContentType.Pkcs12 but works for X509ContentType.Cert

The certificate is generated as shown below. Conversion into X509 format seems to work fine when the plain X509ContentType.Cert is exported but fails with Key not in valid state when exporting to ...
0
votes
1answer
484 views

How to programatically add digital signature to multiple Open Office XML Docx documents?

I want to programatically add a digital signature to multiple DOCX files, using the standardized approach of the method Sign() from PackageDigitalSignatureManager object. As in for example: ...