From: Graham B. <gb...@po...> - 2002-09-02 18:08:57
|
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. > > Or use the LDAP Password Modify Extended Operation [RFC 3062]. Which is supported with Net::LDAP; use Net::LDAP::Extension::SetPassword; $mesg = $ldap->set_password( user =>$user, oldpasswd => $old, newpasswd => $new ); $new_passwd = $resp->gen_password; Graham. |