Home
last modified time | relevance | path

Searched refs:old_passwd (Results 1 – 25 of 57) sorted by relevance

123

/dports/net/ldapsdk/mozldap-6.0.7/c-sdk/ldap/clients/tools/
H A Dldappasswd.c155 char *old_passwd = NULL; in options_callback() local
161 old_passwd = strdup( optarg ); in options_callback()
162 if (NULL == old_passwd) in options_callback()
205 old_passwd = ldaptool_getpass( old_password_string ); in options_callback()
208 old_passwd = ldaptool_read_password( old_password_fp ); in options_callback()
211 if ( old_passwd ) { in options_callback()
213 oldpasswd.bv_val = ldaptool_local2UTF8( old_passwd, "old password" ); in options_callback()
215 oldpasswd.bv_val = strdup( old_passwd ); in options_callback()
/dports/net/samba412/samba-4.12.15/source3/libsmb/
H A Dpasschange.c35 const char *old_passwd, const char *new_passwd, in remote_password_change() argument
69 old_passwd, in remote_password_change()
170 if (!cli_oem_change_password(cli, user_name, new_passwd, old_passwd)) { in remote_password_change()
193 user_name, new_passwd, old_passwd); in remote_password_change()
225 new_passwd, old_passwd)))) { in remote_password_change()
249 if (cli_oem_change_password(cli, user_name, new_passwd, old_passwd)) { in remote_password_change()
/dports/deskutils/egroupware/egroupware/api/src/Accounts/
H A DUnivention.php204 * @param string $old_passwd must be cleartext or empty to not to be checked
211 function change_password($old_passwd, $new_passwd, $account_id=0, $update_lastchange=true) argument
214 …if ($this->debug) error_log(__METHOD__."('$old_passwd','$new_passwd',$account_id, $update_lastchan…
216 …if($old_passwd) // if old password given (not called by admin) --> bind as that user to change the…
219 Api\Ldap::factory(true, '', $dn, $old_passwd);
238 if($old_passwd) // if old password given (not called by admin) update the password in the session
/dports/security/cops/cops_104+/
H A Dpass_diff.chk49 old_passwd=./old_passwd
58 if $TEST ! -f $old_passwd ; then
59 $ECHO "dummy password file" > $old_passwd
69 if $TEST -n "`$CMP $etc_passwd $old_passwd`" ; then
70 # If old_passwd file exists, use it, else just use the
72 $DIFF $etc_passwd $old_passwd | $AWK -F: '/^[<]/{
76 $CP $etc_passwd $old_passwd
/dports/deskutils/egroupware/egroupware/api/src/Auth/
H A DFallback.php89 * @param string $old_passwd must be cleartext or empty to not to be checked
94 function change_password($old_passwd, $new_passwd, $account_id=0) argument
107 if (($ret = $this->primary_backend->change_password($old_passwd, $new_passwd, $account_id)))
110 $this->fallback_backend->change_password($old_passwd, $new_passwd, $account_id);
115 $ret = $this->fallback_backend->change_password($old_passwd, $new_passwd, $account_id);
H A DUnivention.php33 * @param string $old_passwd must be cleartext or empty to not to be checked
39 function change_password($old_passwd, $new_passwd, $account_id=0, $update_lastchange=true) argument
41 …return Api\Accounts::getInstance()->backend->change_password($old_passwd, $new_passwd, $account_id…
H A DHttp.php42 * @param string $old_passwd must be cleartext or empty to not to be checked
47 function change_password($old_passwd, $new_passwd, $account_id=0) argument
49 unset($old_passwd, $new_passwd, $account_id); // not used, but required by interface
H A DNis.php61 * @param string $old_passwd must be cleartext or empty to not to be checked
66 function change_password($old_passwd, $new_passwd, $account_id=0) argument
68 unset($old_passwd, $new_passwd, $account_id); // not used but required by interface
H A DLdap.php283 * @param string $old_passwd must be cleartext or empty to not to be checked
289 function change_password($old_passwd, $new_passwd, $account_id=0, $update_lastchange=true) argument
300 …if ($this->debug) error_log(__METHOD__."('$old_passwd','$new_passwd',$account_id, $update_lastchan…
317 …if($old_passwd) // if old password given (not called by admin) --> bind as that user to change the…
320 $ds = Api\Ldap::factory(true, '', $dn, $old_passwd);
329 if (!@ldap_modify($ds, $dn, $entry) && (!$old_passwd || !@ldap_modify($ds_admin, $dn, $entry)))
333 if($old_passwd) // if old password given (not called by admin) update the password in the session
H A DSqlssl.php63 * @param string $old_passwd must be cleartext or empty to not to be checked
68 function change_password($old_passwd, $new_passwd, $account_id=0) argument
70 unset($old_passwd, $new_passwd, $account_id); // not used but required by interface
H A DPam.php67 * @param string $old_passwd must be cleartext or empty to not to be checked
72 function change_password($old_passwd, $new_passwd, $account_id=0) argument
74 unset($old_passwd, $new_passwd, $account_id); // not used but required by interface
H A DMail.php111 * @param string $old_passwd must be cleartext or empty to not to be checked
116 function change_password($old_passwd, $new_passwd, $account_id=0) argument
118 unset($old_passwd, $new_passwd, $account_id); // not used but required by function sigature
H A DMultiple.php164 * @param string $old_passwd must be cleartext or empty to not to be checked
169 function change_password($old_passwd, $new_passwd, $account_id=0) argument
183 $ret = $this->backend($name)->change_password($old_passwd, $new_passwd, $account_id);
189 if (($ret = $backend->change_password($old_passwd, $new_passwd, $account_id)))
H A DBackend.php33 * @param string $old_passwd must be cleartext
39 function change_password($old_passwd, $new_passwd, $account_id=0); argument
H A DAds.php209 * @param string $old_passwd must be cleartext
215 function change_password($old_passwd, $new_passwd, $account_id=0) argument
248 !$adldap->user()->passwordChangeSupported()) && !$this->authenticate($username, $old_passwd))
254 $ret = $adldap->user()->password($username, $new_passwd, false, $old_passwd);
H A DCas.php67 * @param string $old_passwd must be cleartext or empty to not to be checked
72 function change_password($old_passwd, $new_passwd, $account_id=0) argument
H A DSql.php198 * @param string $old_passwd must be cleartext
203 function change_password($old_passwd, $new_passwd, $account_id=0) argument
226 if(!$admin && !Api\Auth::compare_password($old_passwd,$pw,$this->type,strtolower($username)))
/dports/deskutils/egroupware/egroupware/preferences/inc/
H A Dclass.preferences_password.inc.php272 * @param string $old_passwd
277 public static function do_change($old_passwd, $new_passwd, $new_passwd2) argument
286 $old_passwd !== $GLOBALS['egw_info']['user']['passwd'])
295 if ($old_passwd !== false && $old_passwd == $new_passwd)
309 if (!$GLOBALS['egw']->auth->change_password($old_passwd, $new_passwd,
/dports/www/seahub/seahub-8.0.7-server/tests/seahub/views/sysadmin/
H A Dtest_user_reset.py48 old_passwd = self.user.enc_password
55 assert u.enc_password != old_passwd
66 old_passwd = self.user.enc_password
73 assert u.enc_password != old_passwd
/dports/net/samba412/samba-4.12.15/source3/utils/
H A Dsmbpasswd.c250 const char *old_passwd, const char *new_pw, in password_change() argument
267 old_passwd, new_pw, &err_str); in password_change()
311 char *old_passwd = NULL; in process_root() local
425 old_passwd = get_pass("Old SMB password:",stdin_passwd_get); in process_root()
426 if(!old_passwd) { in process_root()
476 old_passwd, new_passwd, in process_root()
511 SAFE_FREE(old_passwd); in process_root()
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/auth_ldap/models/
H A Dres_users.py44 def change_password(self, old_passwd, new_passwd): argument
48 changed = Ldap._change_password(conf, self.env.user.login, old_passwd, new_passwd)
54 return super(Users, self).change_password(old_passwd, new_passwd)
/dports/www/seahub/seahub-8.0.7-server/tests/seahub/institutions/
H A Dtest_views.py83 old_passwd = self.admin.enc_password
94 assert u.enc_password == old_passwd
104 old_passwd = self.admin.enc_password
115 assert u.enc_password == old_passwd
/dports/deskutils/egroupware/egroupware/api/src/
H A DAuth.php322 * @param string $old_passwd must be cleartext
329 function change_password($old_passwd, $new_passwd, $account_id=0) argument
335 if (($ret = $this->backend->change_password($old_passwd, $new_passwd, $account_id)))
348 self::changepwd($old_passwd, $new_passwd, $account_id);
358 * @param string $old_passwd old password
362 static function changepwd($old_passwd, $new_passwd=null, $account_id=null) argument
371 'old_passwd' => $old_passwd,
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpgwapi/inc/
H A Dclass.auth_sql.inc.php65 function change_password($old_passwd, $new_passwd, $account_id = '') argument
71 $pwd_check = " and account_pwd='" . md5($old_passwd) . "'";
/dports/mail/evolution/evolution-3.42.1/src/smime/gui/
H A Dcomponent.c73 gchar **old_passwd, in smime_pk11_change_passwd() argument
81 if (!old_passwd) { in smime_pk11_change_passwd()

123