we use unboundid (unfortunately old version should upgraded soon).
i want configure multiple tls protocols ldap on ssl connection: tlsv1, tlsv1.1, tlsv1.2.
unfortunately, com.unboundid.util.ssl.sslutil#createsslcontext(java.lang.string, java.lang.string) supports single value:
  public sslsocketfactory createsslsocketfactory(final string protocol)          throws generalsecurityexception   {     return createsslcontext(protocol).getsocketfactory();   }   how configure multiple tls protocols?
if put "tlsv1.2" use protocol version there far jdk supports. doing configuring highest tls protocol version use.
Comments
Post a Comment