| /onnv/onnv-gate/usr/src/cmd/ssh/sshd/ |
| auth2-passwd.c | 46 char *password; local 55 log("password change not supported"); 56 password = packet_get_string(&len); 62 auth_password(authctxt, password) == 1) { 65 memset(password, 0, len); 66 xfree(password); 70 "password",
|
| auth1.c | 50 return "password"; 80 char *client_user, *password; local 90 /* If the user has no password, accept authentication immediately. */ 264 verbose("Password authentication disabled."); 268 * Read user password. It is in plain text, but was 272 password = packet_get_string(&dlen); 275 /* Try authentication with the password. */ 279 auth_password(authctxt, password); 281 memset(password, 0, strlen(password)); [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/ |
| Netrc.pm | 111 elsif($tok =~ /^(login|password|account)$/) 183 sub password subroutine 187 exists $me->{password} 188 ? $me->{password} 195 ($me->login, $me->password, $me->account); 212 ($login, $password, $account) = $mach->lpa; 247 default login anonymous password user@site 258 =item password string 260 Supply a password. If this token is present, the auto-login 262 requires a password as part of the login process [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/inc/include/rpcsvc/ |
| pwdnm.h | 35 char *password; member in struct:pwdnm
|
| /onnv/onnv-gate/usr/src/lib/pam_modules/ldap/ |
| ldap_authenticate.c | 59 char *password = NULL; local 95 /* Get the password entered in the first scheme if any */ 96 (void) pam_get_item(pamh, PAM_AUTHTOK, (void **) &password); 97 if (password == NULL) { 106 * Authenticate user using the password from PAM_AUTHTOK. 107 * If no password available or if authentication fails 110 result = authenticate(&credp, user, password, NULL); 114 * user's password is good but needs 118 * password after the account management 120 * the password has expired [all...] |
| ldap_acct_mgmt.c | 42 * warn_user_passwd_will_expire - warn the user when the password will 64 "Your password will expire within one hour.")); 68 "Your password will expire in %d hours."), 73 "Your password will expire in %d days."), 130 * warn_user_passwd_expired - warn the user that the password has expired 140 "Your password has expired. " 146 "Your password has expired.")); 152 * display_passwd_reset_msg - tell user that password has been reset by 162 "Your password has been reset by administrator.")); 172 * seconds left for password to expir 255 char *password = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/lib/pam_modules/authtok_check/ |
| fascist.c | 29 /* attempt reverse engineering of password strings */ 390 char *password; local 397 password = rpassword; 399 (void) strcpy(password, Lowercase(password)); 400 (void) Trim(password); 404 * since password cannot be longer than TRUNCSTRINGSIZE; 411 if (!(a = Mangle(password, r_destructors[i]))) { 420 (void) strlcpy(password, Reverse(password), PATH_MAX) [all...] |
| /onnv/onnv-gate/usr/src/lib/pam_modules/krb5/ |
| utils.h | 52 char *password; member in struct:__anon4382
|
| krb5_acct_mgmt.c | 65 char *cpw_service, *password; local 70 password = kmd->password; 83 if (strlen(password) == 0) { 108 code = kadm5_init_with_password(kprinc, password, cpw_service, 154 * We first check to see if the KDC had set any account or password 175 char messages[PAM_MAX_NUM_MSG][PAM_MAX_MSG_SIZE], *password; local 183 password = kmd->password; 185 if (!pamh || !user || !password) { [all...] |
| /onnv/onnv-gate/usr/src/lib/print/libpapi-common/common/ |
| uri.h | 40 * scheme://[[user[:password]@]host[:port]]/path[[#fragment]|[?query]] 46 char *password; member in struct:__anon4441
|
| uri.c | 60 * scheme://[[user[:password]@]host[:port]]/path[[#fragment]|[?query]] 111 char *password = NULL; local 113 for (password = user; (password < host - 1); password++) 114 if (*password == ':') { 115 u->password = strndup(password + 1, 116 host - password - 2); 119 u->user = strndup(user, password - user) [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/kpasswd/ |
| kpasswd.c | 59 * Purpose: Initialize and call lower level routines to change a password 65 * read_old_password (f) function to read old password 66 * read_new_password (f) function to read new and change password 73 * 2 old password wrong 76 * 5 password not typed 85 * If argc is 2, the password for the principal specified in argv[1] 89 * read_old_password is then called to prompt for the old password. 92 * read_new_password is called to read the new password and change the 93 * principal's password (presumably ovsec_kadm_chpass_principal). 98 * Changes the principal's password 113 char password[255]; \/* I don't really like 255 but that's what kinit uses *\/ local [all...] |
| /onnv/onnv-gate/usr/src/lib/mms/mms/common/ |
| net_cfg_service.c | 90 mms_trace(MMS_WARN, "net cfg service hello password"); 99 mms_obfpassword(char *password, int ed) 103 if (password) { 104 buf = strdup(password); 115 mms_net_cfg_write_pass_file(char *file, char *password) 132 if (password == NULL) { 134 "net cfg write file %s null password", file); 145 if ((tmpass = strdup(password)) == NULL) { 164 "net cfg write file %s password obfuscation", 192 char *password = NULL local [all...] |
| /onnv/onnv-gate/usr/src/lib/pam_modules/sample/ |
| sample_authenticate.c | 50 * first_pass_good (first password is always good when used with use/try) 51 * first_pass_bad (first password is always bad when used with use/try) 52 * pass=foobar (set good password to "foobar". default good password 83 char *firstpass, *password; local 138 * Get the password from the user 142 dgettext(TEXT_DOMAIN, "TEST Password: ")); 145 dgettext(TEXT_DOMAIN, "Password: ")); 156 password = ret_resp->resp; 158 if (password == NULL) [all...] |
| /onnv/onnv-gate/usr/src/lib/print/libpapi-dynamic/common/ |
| papi_impl.h | 59 char *password; member in struct:__anon4442
|
| /onnv/onnv-gate/usr/src/lib/print/libpapi-ipp/common/ |
| papi_impl.h | 64 char *password; member in struct:__anon4446
|
| /onnv/onnv-gate/usr/src/lib/pam_modules/authtok_get/ |
| authtok_get.c | 96 * password. 113 dgettext(TEXT_DOMAIN, "New Password: "), &pwd); 136 * Since we don't actually check the password, we should 159 * the password correctly. 167 "Re-enter new Password: "), &pwd); 188 "pam_authtok_get: new password verified"); 224 char *password; local 257 res = pam_get_item(pamh, PAM_AUTHTOK, (void **)&password); 261 if (password != NULL) 265 * No password has been entered yet. Check to see if we nee [all...] |
| /onnv/onnv-gate/usr/src/lib/pam_modules/dial_auth/ |
| dial_auth.c | 64 char *password = NULL; local 154 dgettext(TEXT_DOMAIN, "Dialup Password: "), &password); 160 if (strcmp(crypt(password, p2), p2) != 0) { 161 (void) memset(password, 0, strlen(password)); 162 free(password); 165 (void) memset(password, 0, strlen(password)); 166 free(password); [all...] |
| /onnv/onnv-gate/usr/src/lib/pam_modules/passwd_auth/ |
| passwd_auth.c | 69 char *password; local 115 res = pam_get_item(pamh, PAM_AUTHTOK, (void **)&password); 119 if (password != NULL) 174 * The password prompt differs between users updating their 175 * own password, and users updating other an user's password 183 dgettext(TEXT_DOMAIN, "Enter %s's password: "), 191 dgettext(TEXT_DOMAIN, "Enter existing login password: ")); 195 &password); 199 if (password == NULL) [all...] |
| /onnv/onnv-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/ |
| kdb_ldap_conn.c | 51 unsigned char *password=NULL; local 63 krb5_set_error_message(context, st, gettext("LDAP bind password value missing")); 69 if ((st=krb5_ldap_readpassword(context, ldap_context, &password)) != 0) { 70 prepend_err_str(context, gettext("Error reading password from stash: "), st, st); 74 /* Check if the returned 'password' is actually the path of a certificate */ 75 if (!strncmp("{FILE}", (char *)password, 6)) { 76 /* 'password' format: <path>\0<password> */ 77 ldap_context->service_cert_path = strdup((char *)password + strlen("{FILE}")); 83 if (password[strlen((char *)password) + 1] == '\0' [all...] |
| ldap_services.c | 576 char *password[2] = {NULL}; local 582 password[0] = passwd; 587 if ((st=krb5_add_str_mem_ldap_mod(&mods, "userPassword", LDAP_MOD_REPLACE, password)) != 0)
|
| /onnv/onnv-gate/usr/src/lib/smbsrv/libsmbrdr/common/ |
| smbrdr_netuse.c | 150 * associated with the session. The password is not relevant here if 164 char *password; local 184 password = ""; 204 password_len, password, /* Password */
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/ |
| ftpcmd.y | 220 %type <String> STRING password pathname pathstring username method 248 | PASS SP password CRLF 254 syslog(LOG_INFO, "PASS password"); 928 | SITE check_login SP GPASS SP password CRLF 932 syslog(LOG_INFO, "SITE GPASS password"); 1363 password: /* empty */ label [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/ktutil/ |
| ktutil_funcs.c | 97 * password or key. If the keytab list is NULL, allocate a new 115 krb5_data password, salt; local 166 password.length = pwsize; 167 password.data = (char *) malloc(pwsize); 168 if (!password.data) { 174 gettext("Password for %.1000s"), princ_str); 175 retval = krb5_read_password(context, promptstr, NULL, password.data, 176 &password.length); 182 retval = krb5_c_string_to_key(context, enctype, &password, 186 memset(password.data, 0, password.length) [all...] |
| /onnv/onnv-gate/usr/src/cmd/scadm/sparc/mpxu/common/ |
| user.c | 45 static void ADM_Get_Password(char *password); 46 static void ADM_Destroy_Password(char *password); 337 char *password; local 341 /* Try to set password up to 3 times on Malformed password */ 361 password = (&((char *)admMessage)[sizeof (dp_user_adm_t) + 365 ADM_Get_Password(password); 369 strlen(password) + 2; 373 ADM_Destroy_Password(password); 393 gettext("scadm: malformed password\n [all...] |