Lines Matching defs:password
107 const char *password;
116 /* should have received author-id NUL authen-id NUL password */
125 "Can only find author (no password)");
127 SETERROR(params->utils, "Can only find author (no password)");
140 "Can only find author/en (no password)");
143 "Can only find author/en (no password)");
148 /* get password */
150 password = clientin + lup;
153 password_len = clientin + lup - password;
166 /* this kinda sucks. we need password to be null terminated
168 of password so we have to copy it */
175 strncpy(passcopy, password, password_len);
178 /* Canonicalize userid first, so that password verification is only
190 /* verify password - return sasl_ok on success*/
217 params->transition(params->utils->conn, password, password_len);
313 sasl_secret_t *password = NULL;
314 unsigned int free_password = 0; /* set if we need to free password */
351 /* try to get the password */
352 if (password == NULL) {
353 pass_result = _plug_get_password(params->utils, &password,
385 gettext("Please enter your password")) : NULL,
398 "Please enter your password" : NULL, NULL,
407 if (!password) {
426 /* send authorized id NUL authentication id NUL password */
429 + password->len);
440 password->data, password->len);
458 if (free_password) _plug_free_secret(params->utils, &password);