From: Michael Str?d. <str...@us...> - 2004-03-24 20:34:28
|
CVSROOT: /cvsroot/python-ldap Module name: python-ldap Changes by: stroeder 2004/03/24 12:23:50 Modified files: . : CHANGES Lib/ldap : ldapobject.py Modules : LDAPObject.c Log message: Modules/: * Wrapped ldap_sasl_bind() for simple binds instead of ldap_bind() since 1. the latter is marked deprecated and 2. ldap_sasl_bind() allows password credentials with null chars. ldap.ldapobject: * LDAPObject.bind() only allows simple binds since Kerberos V4 binds of LDAPv2 are not supported anymore. An assert statement was added to make the coder aware of that. * Renamed former LDAPObject.sasl_bind_s() to LDAPObject.sasl_interactive_bind_s() since it wraps OpenLDAP's ldap_sasl_interactive_bind_s() |