Searched refs:_PASSWORD_LEN (Results 1 - 14 of 14) sorted by last modified time

/netbsd-current/lib/libc/gen/
H A Dsysconf.c349 return _PASSWORD_LEN;
/netbsd-current/bin/ed/
H A Dcbc.c240 MEMZERO(p, _PASSWORD_LEN);
/netbsd-current/usr.bin/newgrp/
H A Dgrutil.c259 (void)memset(p, '\0', _PASSWORD_LEN);
262 (void)memset(p, '\0', _PASSWORD_LEN);
/netbsd-current/lib/libpam/modules/pam_unix/
H A Dpam_unix.c411 char salt[_PASSWORD_LEN+1];
607 if (pw_gensalt(salt, _PASSWORD_LEN, key, opt) == -1) {
/netbsd-current/sbin/init/
H A Dinit.c706 (void)memset(clear, 0, _PASSWORD_LEN);
/netbsd-current/lib/libcrypt/
H A Dbcrypt.c79 static char encrypted[_PASSWORD_LEN];
/netbsd-current/external/bsd/pam-u2f/dist/pamu2fcfg/
H A Dreadpassphrase.c203 static char buf[_PASSWORD_LEN + 1];
/netbsd-current/external/bsd/libfido2/dist/openbsd-compat/
H A Dreadpassphrase.c203 static char buf[_PASSWORD_LEN + 1];
/netbsd-current/usr.bin/pwhash/
H A Dpwhash.c102 char buf[_PASSWORD_LEN];
121 error = pw_gensalt(buf, _PASSWORD_LEN, "md5", extra);
125 error = pw_gensalt(buf, _PASSWORD_LEN, "sha1", extra);
129 error = pw_gensalt(buf, _PASSWORD_LEN, "blowfish", extra);
147 error = pw_gensalt(buf, _PASSWORD_LEN, key, opt);
155 error = pw_gensalt(buf, _PASSWORD_LEN, key, opt);
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dreadpassphrase.c149 static char buf[_PASSWORD_LEN + 1];
/netbsd-current/include/
H A Dpwd.h92 #define _PASSWORD_LEN 128 /* max length, not counting NUL */ macro
/netbsd-current/usr.bin/passwd/
H A Dlocal_passwd.c67 char buf[_PASSWORD_LEN+1], salt[_PASSWORD_LEN+1];
114 if(pw_gensalt(salt, _PASSWORD_LEN, key, opt) == -1) {
H A Dyp_passwd.c66 #ifndef _PASSWORD_LEN
67 #define _PASSWORD_LEN PASS_MAX macro
88 static char buf[_PASSWORD_LEN + 1];
89 char salt[_PASSWORD_LEN + 1];
140 if (pw_gensalt(salt, _PASSWORD_LEN, key, opt) == -1) {
/netbsd-current/usr.bin/skeyinit/
H A Dskeyinit.c121 if (strlen(optarg) >= _PASSWORD_LEN)
123 if ((pw = malloc(_PASSWORD_LEN + 1)) == NULL)
125 strlcpy(pw, optarg, _PASSWORD_LEN + 1);

Completed in 213 milliseconds