UnboundID: how to configure multiple TLS protocols for LDAP over SSL connection? -


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

Popular posts from this blog

javascript - How to bind ViewModel Store to View? -

recursion - Can every recursive algorithm be improved with dynamic programming? -

c - Why does alarm() cause fgets() to stop waiting? -