• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/nsswitch/

Lines Matching defs:password

468 /* Check trust account password */
741 /* Authenticate a user with a plaintext password */
775 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
802 /* Authenticate a user with a plaintext password */
830 d_printf("plaintext password authentication %s\n",
930 d_printf("challenge/response password authentication %s\n",
942 /* Authenticate a user with a plaintext password and set a token */
974 d_printf("plaintext password authentication %s\n",
1083 const char *password;
1087 /* Separate into user and password */
1095 password = p+1;
1099 password = thepass;
1101 password = "";
1104 /* Store or remove DOMAIN\username%password in secrets.tdb */
1130 if (password[0]) {
1132 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
1133 strlen(password) + 1)) {
1134 d_fprintf(stderr, "error storing password\n");
1146 char *user, *domain, *password;
1150 secrets_fetch_ipc_userpass(&user, &domain, &password);
1152 if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
1156 SAFE_FREE(password);
1164 user, password ? "%" : "", password ? password : "");
1168 SAFE_FREE(password);
1246 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1247 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1250 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1254 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1257 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1259 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1447 "plaintext password\n", string_arg);