Karthik Krishnamoorthy wrote:
> > Could you try enable only SSL v2 and v3 and disable TLS > > in your client? > > I enabled the SSL V3 ciphers but still the SSL communications seems to > go with SSL V 3.1.
NSS enables TLS by default, so you need to explicitly disable TLS. Unfortunately I am not familiar with JSS, so I can't tell you how to do that in JSS. In NSS, you would say:
PRFileDesc *sock;
SSL_OptionSet(sock, SSL_ENABLE_TLS, PR_FALSE);
Wan-Teh
Thanks for your help with this, I see what you mean and looking at the JSS libraries it looks like only a subset of NSS has been implemented in JSS. Currently it seems like there is no option to implement an equivalent of the above with JSS.
Karthik
