I would like to implement a Two-Way SSL handshake in java without using any API's. I wish to implement using native ServerSocket
and Socket
classes in java.
During SSL handshake between server and client, I want to read each certificate in certificate chain and verify myself whether it is valid or not .
How to implement this in Java. I tried goggling for hours all I got was these links. I dont know to implement SSL handshake part. Can anybody please guide me ?
Links I found :