Results 1 to 2 of 2
Thread: SSL Mutual Authentication
- 06-22-2011, 11:26 AM #1
Member
- Join Date
- Jun 2011
- Posts
- 1
- Rep Power
- 0
SSL Mutual Authentication
I am developing a networking application where the server is in cpp and client is in java.Communication is made possible using SSL Sockets.Here i required the mutual authentication of the certificates of client and the server.Certificates are imported from "pem" format into "jks" using "keytool".I hav used the following source code for certificate authentication
System.setProperty("javax.net.ssl.keyStore", "file.jks");
System.setProperty("javax.net.ssl.keyStorePassword ", "password");
System.setProperty("javax.net.ssl.trustStore", "file.jks");
System.setProperty("javax.net.ssl.trustStorePasswo rd", "password");
but it is showing "SSLHandshake" error
but if i am using only the below code it is working fine
System.setProperty("javax.net.ssl.trustStore", "file.jks");
System.setProperty("javax.net.ssl.trustStorePasswo rd", "password");
i.e the mutual authentication is not working
can anyone help on this issue..
help will be very much thankful
Manoj
- 11-08-2011, 06:25 PM #2
Member
- Join Date
- Nov 2011
- Posts
- 1
- Rep Power
- 0
Similar Threads
-
Server authentication using SSL
By jyoti in forum Advanced JavaReplies: 0Last Post: 11-23-2009, 07:12 PM -
jsp authentication
By tascoa in forum JavaServer Pages (JSP) and JSTLReplies: 1Last Post: 08-13-2009, 05:47 PM -
IIS Authentication
By akkarin in forum Java AppletsReplies: 0Last Post: 03-30-2009, 11:35 AM -
Analysing for starvation, deadlock and mutual exclusion
By scarymovie in forum New To JavaReplies: 0Last Post: 03-07-2009, 06:58 AM -
Shared variable mutual exclusion problem. Plz help
By elecrobot in forum Threads and SynchronizationReplies: 6Last Post: 11-25-2007, 02:43 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks