Is it possible to make ldapjs (with nodejs) use TLS instead of just SSL ?
If yes, how would I set this ?
If no, are their any other ldap libraries for nodejs that support TLS ?
The only information I can find is ldaps:// the latter would connect over SSL (note that this will not use the LDAP TLS extended operation, but literally an SSL connection to port 636, as in LDAP v2).
And on the homepage says Doesn't support TLS extended operation (seriously, just use SSL)
Any suggestions on a solution if I'm required to use TLS to connect to the ldap server?
STARTTLS
? - Bruno