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

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -