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
201 views

Java client to WCF service interop with mutual certificate - Cannot resolve KeyInfo for verifying signature

Exception: MessageSecurityException: Cannot resolve KeyInfo for verifying signature: KeyInfo 'SecurityKeyIdentifier I have to set up a WCF service to receive SOAP calls from a Java client that is ...
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
1answer
2k views

Write x509 certificate into PEM formatted string in java?

Is there some high level way to write an X509Certificate into a PEM formatted string? Currently I'm doing x509cert.encode() to write it into a DER formatted string, then base 64 encoding it and ...
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
2answers
126 views

how to compare distinct implementations of java.security.cert.X509Certificate

I'm using bouncycastle org.bouncycastle.jce.provider.X509CertificateObject and sun.security.x509.X509CertImpl in different parts of my app, and sometimes I need to compare them for equality, equals() ...
1
vote
1answer
1k views

Getting RSA private key from PEM BASE64 Encoded private key file

I have a private key file (PEM BASE64 encoded). I want to use it else where to decrypt some other data.Using Java i tried to read the file and decode the BASE64 encoded data in it... This is the code ...
1
vote
1answer
125 views

Signing arbitrary data with x509 in Java

I have an API which which provides authentication via a signed response to a random chalange. Server sends a random string to the client, the client signs this data using a previously established key ...
1
vote
1answer
3k views

Mutual Authentication with x509 Certificates using HttpClient 4.0.1

Does anyone have any friendly tips on how to perform client authentication via an x509 certificate using HTTPClient 4.0.1? Thank you for your time.
0
votes
0answers
56 views

library to output X509 Certificates in java the way openssl does

Does anyone know of a library that outputs an X509 Certificate the way OpenSSL does it with -text ? People are used to that output format, and the java X509 toString() method does not do a nice job of ...
0
votes
0answers
63 views

Generating a Certificate Signing request with KeyUsage extension in Java

String keyUsg = KeyUsageExtension.KEY_ENCIPHERMENT; byte [] der =new DerValue(keyUsg).getOctetString(); KeyUsageExtension keyUsage = new KeyUsageExtension(true,der); DerInputStream in = new ...
0
votes
0answers
39 views

Extraction of sha1 from X.509 openssl certificate in Java

I must write a Java implementation of an X.509 openssl certificate parser, but I have a problem: I do not know how to get the sha1 for the validation of certificates. Can anyone help me to understand ...
0
votes
2answers
137 views

Encrypted in Java using RSA/ECB/PKCS1Padding unable to decrypt in .Net

I have a string that's encrypted using some crypto classes in Java (RSA/ECB/PKCS1Padding) and a public key we exchanged in advance. I want to decrypt that string using our private key and this is the ...
0
votes
1answer
125 views

How to encrypt using a X509 public cert with Android?

I am trying to encrypt a text file using a .pfx certificate file using : public void EncryptUsingPublicKey(File in, File out, File publicKeyFile) throws IOException, GeneralSecurityException { ...
0
votes
0answers
21 views

Authenticating an STS Web Service call from J2SE using a certificate

We are developing a system that has to make a call to an STS web service from a J2SE-based application. I need to attach an X509Certificate to the call, but the only examples I can find rely on J2EE ...
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
1answer
233 views

How to organize X509 authentication in web application with Java and Spring?

I have USB token with private key and X509 certificate on it. It can be seen from Firefox so it is OK. I have sample application from Spring Security (I'm using version 3), which just demonstrates ...
0
votes
0answers
503 views

Spring Security x509 successful authentication

Is there a way to set a default-target when using x509? For example if I was using regular form auth I would have something like: <security:form-login login-page="/login" ...
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
2answers
214 views

want to read issuer String from users public key

I want to read issuer String from users public key with bouncy castle... is there any one have some code or something from which i can get help...
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[]) ...
0
votes
2answers
2k views

Java: Invalid keystore format, when generated through code

This has been asked a couple of times, but none provide coded test cases. Here I give an example of the problem: programmatic generation of a Keystore (works) creation of certificate within that ...