Tagged Questions
X509Certificate is the name of .Net and Java classes for handling X.509 certificates
14
votes
2answers
5k views
“An internal error occurred.” when loading pfx file with X509Certificate2
I'm trying use self-signed certificate (c#):
X509Certificate2 cert = new X509Certificate2(
Server.MapPath("~/App_Data/myhost.pfx"), "pass");
on a shared web hosting server and I got an error:
...
9
votes
3answers
2k views
How do I verify an SSL certificate in python?
I need to verify that a certificate was signed by my custom CA. Using OpenSSL command-line utilities this is easy to do:
# Custom CA file: ca-cert.pem
# Cert signed by above CA: bob.cert
$ openssl ...
9
votes
1answer
2k views
Is it possible to programmatically generate an X509 certificate using only C#?
We're trying to generate an X509 certificate (including the private key) programmatically using C# and the BouncyCastle library. We've tried using some of the code from this sample by Felix Kollmann ...
9
votes
3answers
6k views
Programmatically Create X509 Certificate using OpenSSL
I have a C/C++ application and I need to create a X509 pem certificate containing both a public and private key. The certificate can be self signed, or unsigned, doesn't matter.
I want to do this ...
8
votes
1answer
986 views
How to verify an X509Certificate2 against an X509Certificate2Collection chain
I'm writing a SAML 2.0 response parser to handle POST authentication in ASP.Net (in C# and MVC, but that's less relevant).
So I have a .p7b file to validate with and that can be read into a ...
7
votes
4answers
202 views
How can I use certificate authentication with HttpsURLConnection?
I'm trying to connect to an HTTPS URL, but I need to use client authentication with a certificate placed on my system by third party software.
I haven't the slightest idea how I'm supposed to either ...
7
votes
3answers
3k views
Inserting Certificate (with privatekey) in Root, LocalMachine certificate store fails in .NET 4
I'm having problems inserting a new CA certificate with privatekey in the Root certificate store of the localmachine.
This is what happens:
//This doesn't help either.
new StorePermission ...
7
votes
5answers
3k views
Creating an X509 Certificate in Java without BouncyCastle?
Is it possible to sanely create an X509 Certificate in Java code without using the Bouncy Castle X509V*CertificateGenerator classes?
6
votes
2answers
88 views
Accessing Mozilla Certificates from Delphi
I would like to access certificates stored in Mozilla products (Firefox and Thunderbird) from a Delphi (XE) applicaiton. For start I would like to list them, next it would be nice to be able to manage ...
6
votes
3answers
826 views
Authentication a WCF Request via Client Certificate over HTTPS
I've been struggling with the configuration for this blasted WCF service for the past week, and I'm slowing beginning to suspect that what I'm trying to do is just not possible, despite the ...
6
votes
3answers
4k views
5
votes
2answers
305 views
Find Certificate by hash in Store C#
How to get Certificate by hash in Windows Store using C#?
sha1 example:7a0b021806bffdb826205dac094030f8045d4daa
this loop works but:
X509Store store = new X509Store(StoreName.My);
...
5
votes
3answers
329 views
Debugging failing HTTPS WebRequest
I'm writing a small program which will make a GET request to a server using HTTPS and the HttpWebRequest class. The server (obviously) has a server certificate. It also expects the client to provide a ...
5
votes
2answers
620 views
What is the difference between the x.509 V3 extensions Basic Constraints and Key Usage to create a CA certificate?
These two actions seem to do the same:
using the Basic Constraints extension in a X.509 Certificate to signify that it is a CA certificate and
using the Key Usage extension e.g. to signify that the ...
5
votes
1answer
141 views
How can I send a password along with my certificate (X.509) in a WCF Service?
I have a WCF Service that uses a X.509 certificate as client credentials. Most of these credentials do not require a password for using it, just for installing it.
But now, a client of ours has a ...
5
votes
4answers
811 views
Best way to sign data in web form with user certificate
We have a C# web app where users will connect using a digital certificate stored in their browsers.
From the examples that we have seen, verifying their identity will be easy once we enable SSL, as ...
5
votes
5answers
3k views
How to extract CN from X509Certificate in Java?
I am using a SslServerSocket and client certificates and want to extract the CN from the SubjectDN from the client's X509Certificate.
At the moment I call cert.getSubjectX500Principal().getName() but ...
5
votes
5answers
1k views
Serial Number of a X.509 Certificate
I am programming a Certification Authority in java for a uni class, now I don't know what's the best option for the serial number of the Certificate.
Simple static counter from 0 to veryBigNumber
...
4
votes
2answers
236 views
Which parts of the client certificate to use when uniquely identifying users?
I'm designing a system where users will be able to register and afterward authenticate with client certificates in addition to username/password authentication.
The client certificates will have to ...
4
votes
2answers
1k views
How do I use SSL certificates with HttpWebRequest in C#?
Currently I'm writing a utility application that will connect to a given IP and port and check the information in the SSL certificate using HttpWebRequest. When I try to extract the certificate I get ...
4
votes
1answer
204 views
How to digitally sign an xml document through the client's browser?
When I visit a site which requires a client-side certificate the browser automatically opens a popup asking me which personal certificate I would like to use to connect.
Is there any similar ...
4
votes
4answers
2k views
How to retrieve all certificates in your X509Store
I am using the following code to retrieve all certificates in my PC from an asp.net webapp. The certificates collection is empty, and I can't understand why.
I tried impersonating my own user ...
4
votes
2answers
4k views
PKCS12 Java Keystore from CA and User certificate in java
I've recently been put in charge of mocking up an Apple product (iPhone Configuration Utility) in Java. One of the sections I've been a bit stuck on is a part about Exchange ActiveSync. In there, it ...
4
votes
1answer
903 views
Setting up a ssl server socket with signed certificate
I'm trying to make a simple server which listens on a port and authenticates with ssl. I have files
server.crt
server.key
my-ca.crt
obtained with a openssl tutorial ...
4
votes
3answers
654 views
Developer certificate vs purchased certificate for WCF
I understsand that if I want to use authentication in WCF then I need to install a certificate on my server which WCF will use to encrypt data passing between my server and client.
For development ...
4
votes
1answer
516 views
Java: How to show a dialog to let the user accept SSL certificates
I'm currently having a self signed certificate for my HTTPS webserver.
In my java program there is a SSLSocketFactory that will create a socket to the webserver. The default implementation of sun ...
3
votes
1answer
50 views
Dynamically set x509 to use for WCF duplex comms
I am connecting to a duplex WCF service with an x509 cert, specifying the certificate details in the client config file like this:
<behaviors>
<endpointBehaviors>
<behavior ...
3
votes
2answers
94 views
Securely storing (encrypting) data in an ASP.Net application
I have an asp.net application, accessed by people over the internet using web browsers. It runs on a web server and it talks to a backend database.
Some of the users would like to use the ...
3
votes
2answers
176 views
NullPointerException when making HTTPS call
I've been scratching my head on this issue for the last few days now. I'm trying to POST data to a server which has an SSL certificate installed.
I've been using the EasySSLSocketFactory and the ...
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
260 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
1answer
209 views
how to convert the Certificate String into X509 structure.?
can any one tell me how to convert the string content into X509 structure . i am using openssl to read the X509 Structure.
example : certificate string
-----BEGIN CERTIFICATE-----
...
3
votes
2answers
457 views
Save X509 certificate to a file
I am working on a HTTPS client and I managed to establish a secure connection and get the X509 certificate using "X509 *cert = SSL_get_certificate(ssl);" (ssl is SSL*).
How do I save the certificate ...
3
votes
1answer
457 views
Programmatic WCF Message Security with Certificates
I've written a self-hosted WCF service using WSHttpBindings and I'm trying to implement message-level security using certificates I've generated myself. Unfortunately I'm getting a buried exception ...
3
votes
1answer
454 views
User Certificate is Null in HTTPServletRequest
I am running a servlet in Weblogic 10.3 with two-way SSL enabled. When I try to get the following attributes from the HTTPServletRequest, both are null:
- javax.servlet.request.X509Certificate
- ...
3
votes
1answer
5k views
How to install my server's self-signed certificate on an iPad
Is there a way to install my own self-signed SSL certificate on my iPad? Presumably I can get the .crt via Dropbox or email, but then what do I do with it? Is there an easier way to get the .crt than ...
3
votes
1answer
401 views
Can using self-signed certificates with WCF be secure?
Imagine for a moment that we're using classic asymmetric encription with WCF (private/public key pairs). Obviously it's secure until private keys aren't stolen. We don't need any trust chains between ...
3
votes
1answer
291 views
How can I access user-installed keys and certificates from my Android app?
I've been struggling to consume user installed identity CA certs from a p12 file on an SD card. The certs and keys are installed using the Secure Credential Storage (Location & Security > Install ...
3
votes
2answers
733 views
Spring-Security with X509?
I am new to spring-security in general and am a bit confused.
The project I am trying to integrate this with uses X509 certificates to identify users for signing in to the application. There are no ...
3
votes
3answers
1k views
How do I sign a HTTP request with a X.509 certificate in Java?
How do I perform an HTTP request and sign it with a X.509 certificate using Java?
I usually program in C#. Now, what I would like to do is something similar to the following, only in Java:
private ...
3
votes
2answers
741 views
How do I use m2crypto to validate a X509 certificate chain in a non-SSL setting
I'm trying to figure out how to, using m2crypto, validate the chain of trust from a public key version of a X509 certificate back to one of a set of known root CA's when the chain may be arbitrarily ...
3
votes
1answer
851 views
HowTo: iPhone Web Service call to WCF Service with Certificate Authentication
We are a .Net shop currently developing a iPhone app that requires the app to call a WCF web service. Our WCF Services are secured with a x509 certificate for authentication purposes.
I have been ...
3
votes
1answer
2k views
Install client certificate for IIS App Pool account
Scenario:
A client calls WebService A on the LAN. WebService A is running under an App Pool with Identity "Network Service".
WebService A does some work, prepares to call WebService B.
WebService B ...
2
votes
0answers
12 views
How to programmatically install a CA Certificate (for EAP WiFi configuration) in Android?
My objective:
Create an EAP WiFi configuration - including the CA Certificate - in Android programmitcally.
Problem:
How do I install a CA Certificate programmatically (and then reference that ...
2
votes
2answers
150 views
How to remove certificate from Store cleanly
You can install certificate into certificate store using Wizard in certmgr.msc (Right click install)? Does anyone knows how to "cleanly" remove all the certificate by either using wizard/Code (pref.) ...
2
votes
0answers
77 views
Root certificate automatically removed from the “Trusted Root Certification Authorities”
I've a development environment with a test public key infrastructure. This infrastructure has one root CA, one intermediate CA and multiple end-entities (clients and servers).
On the dev. machines, ...
2
votes
1answer
222 views
WCF 4 - TransportWithMessageCredential using X.509 certificates for transport and message security
I'm trying to make a WCF4 service hosted on IIS which will use X.509 certificates for message security and SSL with required mutual authentication for transport security (project specification ...
2
votes
2answers
125 views
How to get the X509Certificate from a client request
I have a webservice which I secured using certificates.
Now, I want to identify the client by looking at the certificate thumbprint. This means that I have a list of thumbprints on my service ...
2
votes
1answer
62 views
How to make jQuery consume a secured service?
i want to consume a web service which has certificate based security. is it possible to use the browser certificate (x509) store to consume such a service
2
votes
2answers
449 views
C# How can I validate a Root-CA-Cert certificate (x509) chain?
Let's say I have three certificates (in Base64 format)
Root
|
--- CA
|
--- Cert (client/signing/whatever)
How can I validate the certs and certificate path/chain in C#?
(All those three ...