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
1answer
123 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
1k 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
1answer
457 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: ...