Tagged Questions
6
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
4answers
7k views
Using HTTPS with REST in Java
I have a REST server made in Grizzly that uses HTTPS and works wonderfully with Firefox. Here's the code:
//Build a new Servlet Adapter.
ServletAdapter adapter=new ServletAdapter();
...
4
votes
2answers
89 views
Writing a SSL Checker using Java
Does anyone know of any good tutorials, sites, and or books on writing a SSL checker in Java? I'm trying to do what can be found here: http://www.sslshopper.com/ssl-checker.html .
I'm not trying 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 ...
3
votes
2answers
494 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 ...
2
votes
2answers
124 views
Check X509 certificate revocation status in Spring-Security before authenticating
Is it possible to check the revocation status of a x509 client certificate through the CRL in spring-security before authenticating it? I've checked documentations ...
2
votes
1answer
481 views
How do I parse subjectAltName extension data using pyasn1?
I have some data that pyOpenSSL gave me, '0\r\x82\x0bexample.com'. This should be the value of a subjectAltName X509 extension. I tried to encode the necessary parts of the ASN1 specification for ...
1
vote
2answers
126 views
Request with X509 Certificate
I have received a X509 certificate (one .cer file), I can decode it, so no problems on that. Now I want to sign a request with this certificate in node, but I can't get this to work:
var https = ...
1
vote
2answers
66 views
Is the supported encryption strength specified in SSL certificates?
I have been trying to find the answer to this all day. I have googled, asked people in the know, trawled sites for SSL Cert vendors etc etc etc. Maybe my search-fu is just failing today. Anyway...
...
1
vote
3answers
209 views
PHP SSL Certificate Serial Number in hexadecimal
I need to display SSL certificat information about Serial Number.
When I use
$cert = file_get_contents('mycert.crt');
$data=openssl_x509_parse($cert,true);
$data['serialNumber']
I receive like
...
1
vote
1answer
588 views
iOS - managing trusted roots on an SSL connection
By adding to the kCFStreamPropertySSLSettings dictionary the usual kCFStreamSSLValidatesCertificateChain, kCFStreamSSLAllowsAnyRoot, etc - I can make server & client authentication work.
However ...
1
vote
1answer
70 views
Is there a standard way to run a x509 key server?
Does anyone know of a project / product that has standardized how to access/download x509/SSL certificates over HTTP? I have seen RFC 4387 but haven't found anyone who implements it. Basically, I am ...
0
votes
1answer
209 views
WCF - The security protocol cannot verify the incoming message.
I am trying to create a WCF service that uses certificate authentication over SSL to create a Business to Business gateway. I have created a CA and a client certificate and put them in the Trusted ...
0
votes
1answer
50 views
Difference between these two OpenSSL generation methods
I'm trying to create my own root CA.
Here's one way of generating a self-signed root key/certificate.
openssl req -x509 -nodes -newkey rsa:2048 -subj ...
0
votes
1answer
70 views
How to create X509 root certificate and distribute subordinate certificates
I've been looking at how to create X509 certificates and I'm a bit confused. I understand the theory, and creating a single certificate is OK, but I don't have the operational know-how to create the ...
0
votes
0answers
51 views
Implementation of Clientside Authentification with Apache James
i am using Apache james as a mailserver and i need to implement both side Client- and Serverside Authentification with X509 certificates.
The serverside is pretty easy and only a matter of ...
0
votes
2answers
148 views
SSL in Python: Why it doesn't send certificate to server?
I'm writing some software that is supposed to acquire information from SSL-secured web page. Below there's piece of code I use to connect to server.
s = socket.socket (socket.AF_INET, ...
0
votes
0answers
96 views
X509Certificate Java Class equivalent in Ruby?
within Java, to gather the user's certs, you could achieve this by:
X509Certificate[] certs = (X509Certificate[]) request.getAttribute("javax.servlet.request.X509Certificate");
From there, you ...
0
votes
2answers
454 views
Converting a SSL Cert to a .pem format
Hi I am a little new to all this openSSL and PEM stuf, so I thought I would ask you people here. I have a certificate in text(X509) format like this for example
Certificate:
Data:
Version: 3 ...
0
votes
0answers
147 views
Spring X509 Authentication Between Two Servers
I've got two Spring web applications on different domains and different servers that already have signed SSL certificates. I'd like one of them to be able to make requests of the other in a secure ...
0
votes
1answer
670 views
Using personal X509 certificate to connect to SSL protected API in Android app?
I know this has been asked before but I haven't managed to find a really clear answer yet -
I'm trying to implement an API within an Android app. In order to make the initial connection, I need to ...
0
votes
0answers
87 views
makecert hanging on Win7 64bit
I'm just going through the process of creating some test certificates for some development work and I'm having a problem with the makecert command "-ss CA".
This command automatically installs a ...
0
votes
1answer
53 views
OpenSSL: How to supply a custom pointer to the certificate verification callback
I want to use X509_STORE_set_verify_cb_func to receive certificate validation errors. I then want to store these errors in a list and process it later after SSL_connect returned.
However my ...
0
votes
1answer
450 views
Getting SSL context for HttpsURLConnection from X509Certificate
I am pretty new to certificates, but I have to do something like this (in Java):
1) I have requestor's certificate in my hand:
X509Certificate[] certs = (X509Certificate[]) ...