Lines Matching defs:password
164 /* demand password */
174 sasl_secret_t *password;
189 /* get password */
190 password =
192 if (!password) {
197 strncpy((char *)password->data, clientin, clientinlen);
198 password->data[clientinlen] = '\0';
199 password->len = clientinlen;
201 /* canonicalize username first, so that password verification is
207 _plug_free_secret(params->utils, &password);
214 (char *)password->data, password->len);
217 _plug_free_secret(params->utils, &password);
223 (char *)password->data, password->len);
226 _plug_free_secret(params->utils, &password);
311 sasl_secret_t *password;
312 unsigned int free_password; /* set if we need to free password */
382 /* try to get the password */
383 if (text->password == NULL) {
384 pass_result = _plug_get_password(params->utils, &text->password,
408 gettext("Please enter your password") : NULL, NULL,
418 "Please enter your password" : NULL, NULL,
427 if (!text->password) {
462 /* server should have sent request for password - we ignore it */
479 if (clientoutlen) *clientoutlen = text->password->len;
480 *clientout = (char *)text->password->data;
511 if (text->free_password) _plug_free_secret(utils, &(text->password));