Tagged Questions
.Net Class for handling X.509 Certificates
7
votes
3answers
1k views
how to create a completely new x509Certificate2 in .net?
I google it from web, find many samples to generate a new x509Certificate2 from a file in .net, but there is no one sample to show how to generate a completely new x509Certificate2 from the beginning ...
7
votes
2answers
7k views
In C#, sign an xml with a x.509 certificate and check the signature
I'm trying to sign an XML file using a x.509 certificate, I can use the private key to sign the document and then use the CheckSignature method (it has an overload that receives a certificate as ...
6
votes
3answers
5k views
Exporting X.509 certificate WITHOUT private key (.NET C#)
I thought this would be straightforward but apparently it isn't. I have a certificate installed that has a private key, exportable, and I want to programmatically export it with the public key ONLY. ...
4
votes
3answers
4k views
OpenSSL verify certificate from own CA
Hello all and thanks for your time reading this.
I need to verify certificates issued by my own CA, for which I have a
certificate. How can I do the equivalent to openssl's
openssl verify -CAfile
...
4
votes
6answers
4k views
DOD Common Access Card (CAC) Authentication
I have figured out all the necessary steps to get DOD CAC card based client certificate authentication working in Apache, but am now struggling to pull a good GUID for the user from the certificate I ...
4
votes
1answer
6k views
How to read Pkcs#7 certificate chain from file/stream in C#?
I have two certificates that I saved to disk. One is a certificate with private key that I exported as a .pfx file, the other one is a certificate that I saved including its certificate chain as a ...
3
votes
2answers
242 views
Convert asn1 to base64 in C#
Is there a way to convert an ASN.1 encoded private key of X509Certificate into Base64 format, using C# code?
Thanks in advance.
3
votes
1answer
178 views
Importing all certificates contained in a .p12 file
I have a .p12 file for my ASP.NET application to connect to a web service via HTTPS. I am trying to import the .p12 file into the Local Machine/My store. The .p12 file contains more than one ...
3
votes
1answer
94 views
Why do multiple calls to X509Certificate2.Export(Pkcs12) return different results?
Here is a test:
var decoded = Convert.FromBase64String(certificateBase64Encoded);
var certificate = new X509Certificate2(decoded, (string)null, X509KeyStorageFlags.Exportable);
var x = ...
3
votes
2answers
259 views
How to create a minimal dummy X509Certificate2?
Hello stackoverflow users,
I'm unit testing a .NET application; some of the unit tests involve programmatically generating X509Certificate2 objects.
I don't care about actual signing/private ...
3
votes
0answers
548 views
Minimal client which supports message-level security over the channel interface
I'm trying to build a minimal client for a WCF service, using the WSHttpBinding with SecurityMode: Message over a direct channel interface.
My current code is very simple:
EndpointIdentity i = ...
2
votes
1answer
128 views
The best way to export private key as byte array
I write application that has to get private key from the user and then send it to another application as base64, I want to allow the user to insert a X509Certificate2 with the private key.
Now my ...
2
votes
3answers
173 views
Export private key from X509Certificate object
We use C# code we build X509Certificate2 with .p12 file, in the constructor we insert the path to certificate, certificate's password. We also marked it as Exportable as shown below:
X509Certificate2 ...
2
votes
1answer
87 views
Can any tell me the difference between CSR version and certificate version?
I want to generate a X509 v3 certificate using a CSR (RFC2986), but the RFC says PKCS10 (CSR) supports only v1. Can anyone tell me the difference?
2
votes
3answers
335 views
Decode ASP Request.ClientCertificate(“Certificate”) from a .NET COM library
In an effort to further refine my question this is the 3rd rewrite. Here is the scenario in a nutshell.
Legacy ASP / VBscript website
.NET / C# COM library which is used in the ASP site
I want to ...
2
votes
0answers
178 views
exchange web services x509 Certivicate
I am trying to connect to Exchange Web Services to send an email on behalf of a user through my own Web Service (ASP/WCF). My code works fine when running on a desktop PC able to connect to the ...
2
votes
1answer
2k views
ServicePointManager.ServerCertificateValidationCallback question
I have a web app hosted on GoDaddys virtual hosting service and I need my app to connect to a service that requires public key authentication. I got the pfx file from the company and now I'm trying to ...
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 ...
2
votes
2answers
3k views
Converting a byte array to a X.509 certificate
I'm trying to port a piece of Java code into .NET that takes a Base64 encoded string, converts it to a byte array, and then uses it to make a X.509 certificate to get the modulus & exponent for ...
2
votes
2answers
2k views
Can I use an X509Certificate2 within ASP.NET without using a certificate store?
I am trying to use an X509Certificate within an ASP.NET web service within the Rackspace Cloud. I have a feeling the certificate stores on the cloud nodes maybe causing problems. I also have a ...
2
votes
1answer
872 views
Signing a PDF file
I use iTextSharp to sign a PDF file. But Adobe Reader cannot verify my signature. I use SHA-2 test certificate (I tried also SHA-1) generated by certification authority. I have installed root ...
2
votes
3answers
4k views
read client certificate from httprequest C#
I am trying to read an X509 certificate using Request.ClientCertificate but nothing is returned. The certificate is definitely being attached to the request because I can get the certificate ...
2
votes
3answers
883 views
Create certificate for a client app in .NET
I'm looking for a server app to be routinely generating certificates for client applications using self-signed root. Is there any streamlined process in .NET to programmatically generate those ...
2
votes
2answers
2k views
Why does X509Certificate2 sometimes fail to create from a blob?
I have an ASP.NET web service which is receiving a byte array representing the contents of a pfx file containing an X.509 certificate. The server-side code is using the ...
1
vote
1answer
89 views
Decrypt String with *.Pem file in C#
Ok, I have a string of text, encoded in Base64.
I want to decode this from Base64 to a byte array, then decrypt this with my private key. My private key is a *.pem file. I am lost!
I think I need to ...
1
vote
2answers
74 views
Loading certificate files from file
For an Azure web-service I need to load a .pfx file. This I can do from file (installed next to the service). To get everything working I need to install a .cer and a .crl into the trusted certificate ...
1
vote
0answers
49 views
X509Certificate2 constructor issues
I have a pfx file. When I use the file stream to read this pfx file.
When I create the X509Certificate2 with just giving the raw bytes, it works.
But when I try to create the X509Certificate2 with the ...
1
vote
1answer
119 views
Mitigating RsaCryptoServiceProvider thread safety issues on a web server
I have an X509Certificate2 instance, and obtain its PrivateKey property, which is an RsaCryptoServiceProvider. MSDN documents that this RsaCryptoServiceProvider class is not thread-safe. So if given ...
1
vote
1answer
153 views
X509Certificate Implementation best practises
Firstly, Thanks to all those patient techies trying to help unknown people.
Secondly, I have a wcf service which should be consumed by only several clients (10) known to our company. This wcf ...
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 = ...
1
vote
2answers
960 views
Exporting a Certificate as BASE-64 encoded .cer
I am trying to export a cert without the private key as as BASE-64 encoded file, same as exporting it from windows. When exported from windows I am able to open the .cer file in notepad.
When I try ...
1
vote
2answers
558 views
Importing an openssl-created self-signed cert into a X509Certificate2 (Mono): Can encrypt, can't decrypt
I'm in Fedora 14, MonoDevelop 2.4, Mono 2.6.7. I generated my self-signed cert thusly:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout mysitename.key -out mysitename.crt
Then I'm ...
1
vote
1answer
258 views
X509Certificate validation with SerialNumber or Public Key
Can anyone offer some advice on validating a X509Certificate. I am already checking to see if the cert is signed by a trusted root, however I also want to check that the certificate is issued to a ...
1
vote
1answer
2k views
Convert .PEM certificate to .PFX Programatically using OpenSSL
I've got a .PEM file that I want to convert to a PKCS12 file (PFX) and I know I can easily accomplish this using the following openssl command:
Create a PKCS#12 file:
openssl pkcs12 -export -in ...
1
vote
1answer
140 views
Is there any way to do X.509 Certificate creation in .net?
I take some days and still can not find any way to do X.509 Certificate creation in .net.
Is there anyone who can give me an answer or some hints?
Thanks.
1
vote
1answer
2k views
X509Certificate2 validation on web service
I'm developing WCF web service that checks if a certificate in XML signature is valid.
XML is signed with qualified and valid X509 certificate. While I am running service within Visual Studio ...
1
vote
1answer
2k views
C# Export cert in pfx format
Hi im trying to use .Net and c# to export a certificate from the cert store into a PFX file. I'm trying to use the X509certificate2.export method wiht the X509ContentType.Pfx flag set, but am unsure ...
1
vote
3answers
6k views
How do I get the X509Certificate sent from the client in web service?
Apparently I was asking the wrong question in my earlier post. I have a web service secured with a X.509 certificate, running as a secure web site (https://...). I want to use the client's machine ...
0
votes
1answer
23 views
Access x509 certificates in windows service certificate stores with C#
I would like to store an x509 certificate for use by a windows service. The problem I am having is where to store this certificate. It seems using the microsoft management console (mmc) certificate ...
0
votes
1answer
28 views
Attach .pfx certificate to an exe
I have to deploy a software to n clients that will install a certificate and use it. I don't want to deploy two files (.pfx and exe) just one (.exe that will contain the .pfx).
What i'm doing now is ...
0
votes
0answers
165 views
Problems authenticating .net C# client on Java Webservice via https and certificate
I am implementing a c# webservice client that has to consume a Java webservice. Communication protocol is https and authentication has to be done via certificate (including private key).
As far as I ...
0
votes
1answer
91 views
Access X509 Certificate store with unmanaged C++
Does anyone know how I would do the equivalent of the below C# code using unmanaged C++ i.e. query a certificate from the X509 certificate store by thumbprint?
var store = new ...
0
votes
0answers
30 views
Implement openssl's subject_hash in c#
Our security application is a C# Web Application project and it uses the X509Certificate2 class to interact with certificates. I use openssl (windows command line binaries) to manage, troubleshoot, ...
0
votes
1answer
83 views
X509Chain.Build() method explanation
I want to validate chain of certificates, I get a X509Certificate2 collection and have to validate if all the certificates build one chain.
Usually, in order to verify the certificates chain I should ...
0
votes
1answer
198 views
Certificate stored in cert store disappearing from ASP.NET application over time
I've got a code signing certificate from Thawte that I'm using to dynamically generate and sign ClickOnce deployment manifests. The problem is that the ASP.NET application that generates and signs ...
0
votes
1answer
117 views
How do I use X509Certificate2 for mutual SSL in .NET? Private key is not recognized
So, I have a private key, and a certificate in 2 files... I need to feed that to X509Certificate2 to use for mutual SSL. When I simply do new X509Certificate2 - I can specify one file name. I created ...
0
votes
1answer
200 views
X509Certificate2: Internal error
When I try to execute code below I got an error:
Internal error occurred.
var certificate = new X509Certificate2( p12FileBytes, p12FilePassword );
when I added
...
0
votes
1answer
66 views
How to use X509Certificate2 as the credentials for a SharePointService request
I have a MOSS 2007 farm that requires a client certificate to access. I have written several methods that use the built in SharePoint services to retrieve data from the site. However, outside of my ...
0
votes
2answers
801 views
C# Exception when trying to read a PrivateKey from Windows certstore
I created a private and public key pair using OpenSSL and then I generated a .p12 file to import it into my Windows certstore. The key pair and .p12 files were created in Windows XP and I am trying to ...
0
votes
1answer
336 views
ASP.NET MVC: “An internal error occurred.” when loading certificate bytes with X509Certificate2
I have already spent a few hours to resolve this error. The weird thing is when I use this libraries independently, it works absolutely fine but when I integrate them with my ASP .NET MVC website, it ...