Thanks to everyone!
>>> Graham Barr <gb...@po...> 09/02 3:04 >>>
On Mon, Sep 02, 2002 at 10:44:19AM -0700, Kurt D. Zeilenga wrote:
> At 09:57 AM 2002-09-02, Mark Wilcox wrote:
> >To encrypt passwords in openLDAP the client must take care of it.
>=20
> Or use the LDAP Password Modify Extended Operation [RFC 3062].
Which is supported with Net::LDAP;
use Net::LDAP::Extension::SetPassword;
$mesg =3D $ldap->set_password(
user =3D>$user,
oldpasswd =3D> $old,
newpasswd =3D> $new
);
$new_passwd =3D $resp->gen_password;
Graham.
|