| /src/external/gpl2/gettext/dist/djgpp/ |
| getpwnam.c | 16 static char passwd[] = ""; variable 20 struct passwd * 23 static struct passwd rv; 38 rv.pw_passwd = passwd;
|
| djpwd.h | 26 struct passwd { struct 36 struct passwd * getpwuid(uid_t _uid); 37 struct passwd * getpwnam(const char *_name); 41 struct passwd *getpwent(void);
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| passwd_dlg.c | 49 char passwd[passwdBufSZ]; variable 60 if(!GetDlgItemText(hwndDlg,IDC_PASSWD_EDIT, passwd, passwdBufSZ)) 81 strlcpy(buf, passwd, size); 82 memset (passwd, 0, sizeof(passwd)); 86 memset (passwd, 0, sizeof(passwd));
|
| /src/external/bsd/kyua-cli/dist/utils/ |
| passwd.hpp | 29 /// \file utils/passwd.hpp 39 namespace passwd { namespace in namespace:utils 67 } // namespace passwd
|
| /src/crypto/external/bsd/openssh/dist/ |
| auth2-krb5.c | 56 char *passwd; local 60 if ((r = sshpkt_get_cstring(ssh, &passwd, &dlen)) != 0 || 64 tkt.data = passwd;
|
| /src/external/bsd/openldap/dist/libraries/liblutil/ |
| ptest.c | 65 struct berval *passwd; local 77 &passwd, &salt, hash[i] ); 81 passwd = lutil_passwd_hash( &pw[j], hash[i] ); 83 if( passwd == NULL ) 93 rc = lutil_authpasswd( &pw[j], passwd, salt, NULL ); 95 rc = lutil_passwd( passwd, &pw[j], NULL ); 99 pw[j].bv_val, pw[j].bv_len, passwd->bv_val, passwd->bv_len, 103 rc = lutil_authpasswd( passwd, salt, &bad, NULL ); 105 rc = lutil_passwd( passwd, &bad, NULL ) [all...] |
| sasl.c | 45 char *passwd; member in struct:lutil_sasl_defaults_s 63 if (defs->passwd) ber_memfree(defs->passwd); 76 char *passwd, 88 defaults->passwd = passwd ? ber_strdup(passwd) : NULL; 128 if( defaults ) dflt = defaults->passwd;
|
| /src/lib/libcrypt/ |
| crypt-sha1.c | 114 static char passwd[(2 * sizeof(SHA1_MAGIC)) + local 157 dl = snprintf(passwd, sizeof (passwd), "%.*s%s%u", 162 __hmac_sha1((unsigned char *)passwd, dl, pwu, pl, hmac_buf); 167 pl = snprintf(passwd, sizeof(passwd), "%s%u$%.*s$", 169 ep = passwd + pl; 188 return passwd;
|
| md5crypt.c | 42 static char passwd[120], *p; local 98 memcpy(passwd, MD5_MAGIC, MD5_MAGIC_LEN); 99 strlcpy(passwd + MD5_MAGIC_LEN, sp, sl + 1); 100 strlcat(passwd, "$", sizeof(passwd)); 135 p = passwd + sl + MD5_MAGIC_LEN + 1; 147 return (passwd);
|
| /src/sys/lib/libsa/ |
| checkpasswd.c | 112 char *passwd; local 123 passwd = getpass("Password: "); 125 MD5Update(&md5ctx, passwd, (u_int)strlen(passwd));
|
| /src/tools/compat/ |
| compat_pwd.h | 39 #define passwd __nbcompat_passwd macro 48 struct passwd { struct 61 int pw_scan(char *, struct passwd *, int *);
|
| /src/usr.bin/chpass/ |
| pw_yp.c | 56 #define passwd yp_passwd_rec macro 58 #undef passwd macro 82 * Find the host for the passwd map; it should be running 86 if (yp_master(domain, "passwd.byname", &master) != 0) { 106 pw_yp(struct passwd *pw, uid_t ypuid) 122 * Find the host for the passwd map; it should be running 126 if ((r = yp_master(domain, "passwd.byname", &master)) != 0) { 208 master, "the master YP passwd server."); 223 errx(eval, "YP passwd information unchanged");
|
| /src/usr.bin/skey/ |
| skey.c | 44 char passwd[SKEY_MAX_PW_LEN+1], key[SKEY_BINKEY_SIZE]; local 58 if (strlcpy(passwd, optarg, sizeof(passwd)) >= 59 sizeof(passwd)) 120 readpass(passwd, sizeof(passwd)); 121 if (passwd[0] == '\0') 125 if (strlen(passwd) < SKEY_MIN_PW_LEN) 131 if (keycrunch(key, seed, passwd) != 0)
|
| /src/crypto/external/bsd/libsaslc/dist/src/ |
| mech_crammd5.c | 69 const char *authcid, *passwd; local 85 if ((passwd = saslc_sess_getprop(sess, SASLC_CRAMMD5_PASSWD)) 88 "passwd is required for an authentication"); 91 digest = saslc__crypto_hmac_md5_hex((const unsigned char *)passwd, 92 strlen(passwd), in, inlen);
|
| mech_plain.c | 72 const char *authzid, *authcid, *passwd; local 95 if ((passwd = saslc_sess_getprop(sess, SASLC_PLAIN_PASSWD)) 98 "passwd is required for an authentication"); 101 if (strlen(passwd) > CRED_MAX_LEN) { 103 "passwd should be shorter than 256 characters"); 108 NUL_DELIM, authcid, NUL_DELIM, passwd); 117 "authzid='%s' authcid='%s' passwd='%s'\n", 118 authzid != NULL ? authzid : "", authcid, passwd);
|
| /src/crypto/external/cpl/tpm-tools/dist/src/tpm_mgmt/ |
| tpm_setoperatorauth.c | 65 char *passwd = NULL; local 93 passwd = _GETPASSWD(_("Enter operator password: "), (int *)&pswd_len, TRUE, 95 if (!passwd) { 100 passwd = (char *)wellKnown; 108 if (policySetSecret(hNewPolicy, (UINT32)pswd_len, (BYTE *)passwd) != TSS_SUCCESS) 112 shredPasswd(passwd); 113 passwd = NULL;
|
| tpm_changeauth.c | 114 char *passwd = NULL; local 152 passwd = (char *)well_known_secret; 155 passwd = _GETPASSWD(_("Enter owner password: "), &pswd_len, 157 if (!passwd) { 166 if (policySetSecret(hTpmPolicy, pswd_len, (BYTE *)passwd) != TSS_SUCCESS) 170 shredPasswd(passwd); 171 passwd = NULL; 178 passwd = (char *)well_known_secret; 181 passwd = _GETPASSWD(_(auths[i].prompt), &pswd_len, 183 if (!passwd) { [all...] |
| /src/external/bsd/ppp/dist/pppd/plugins/ |
| passwordfd.c | 33 char passwd[MAXSECRETLEN]; local 40 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood); 56 passwd[readgood] = 0; 57 strcpy (save_passwd, passwd); 73 static int pwfd_passwd (char *user, char *passwd) 75 if (passwd != NULL) 76 strcpy(passwd, save_passwd);
|
| /src/external/bsd/libbind/dist/irs/ |
| dns_pw.c | 54 struct passwd passwd; member in struct:pvt 61 static struct passwd * pw_byname(struct irs_pw *, const char *); 62 static struct passwd * pw_byuid(struct irs_pw *, uid_t); 63 static struct passwd * pw_next(struct irs_pw *); 71 static struct passwd * getpwcommon(struct irs_pw *, const char *, 123 static struct passwd * 125 return (getpwcommon(this, nam, "passwd")); 128 static struct passwd * 136 static struct passwd * [all...] |
| irp_pw.c | 62 struct passwd passwd; /*%< password structure */ member in struct:pvt 68 static struct passwd * pw_next(struct irs_pw *); 69 static struct passwd * pw_byname(struct irs_pw *, const char *); 70 static struct passwd * pw_byuid(struct irs_pw *, uid_t); 74 static void free_passwd(struct passwd *pw); 120 free_passwd(&pvt->passwd); 127 * struct passwd * pw_next(struct irs_pw *this) 131 static struct passwd * 134 struct passwd *pw = &pvt->passwd [all...] |
| /src/sys/external/isc/libsodium/dist/test/default/ |
| pwhash_argon2i.c | 81 char passwd[256]; local 88 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 93 if (crypto_pwhash(out, (unsigned long long) tests[i].outlen, passwd, 133 char passwd[256]; local 140 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 145 if (crypto_pwhash(out, (unsigned long long) tests[i].outlen, passwd, 192 const char *passwd; member in struct:__anon6529 209 char *passwd; local 235 const char *passwd = "Correct Horse Battery Staple"; local [all...] |
| pwhash_argon2id.c | 81 char passwd[256]; local 88 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 93 if (crypto_pwhash(out, (unsigned long long) tests[i].outlen, passwd, 133 char passwd[256]; local 140 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 145 if (crypto_pwhash(out, (unsigned long long) tests[i].outlen, passwd, 188 const char *passwd; member in struct:__anon6532 205 char *passwd; local 231 const char *passwd = "Correct Horse Battery Staple"; local [all...] |
| pwhash_scrypt.c | 93 char passwd[256]; local 100 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 106 out, (unsigned long long) tests[i].outlen, passwd, 142 char passwd[256]; local 149 sodium_hex2bin((unsigned char *) passwd, sizeof passwd, 155 out, (unsigned long long) tests[i].outlen, passwd, 169 const char *passwd; member in struct:__anon6535 278 char * passwd; local 303 const char *passwd = "Correct Horse Battery Staple"; local [all...] |
| /src/external/bsd/libarchive/dist/cpio/ |
| cpio_windows.h | 29 struct passwd { struct
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/nssov/ |
| group.c | 146 struct berval passwd = {0}; local 186 /* get group passwd (userPassword) (use only first entry) */ 189 get_userpassword(&a->a_vals[0], &passwd); 190 if (BER_BVISNULL(&passwd)) 191 passwd=default_group_userPassword; 255 WRITE_BERVAL(cbp->fp,&passwd);
|