I am reading through the source code of indianwebproxy and it uses proxycertificate.ser file for the certificate when using ssl.
The problem is that this certificate is expired and i want to generate my own so that i could test it on real servers in firefox.
Can you guys guide me on generating java certificate files with the .ser extension?
I am reading through the source code of indianwebproxy and it uses proxycertificate.ser file
Share
A
.serextension probably just means it is a Java serialized object. The X509Certificate class does in fact implement Serializable.My guess is that you just need to serialize your X509Certificate instance.