• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/

Lines Matching refs:cnonce

186     unsigned char *cnonce;
233 unsigned char *cnonce;
1624 if (text->cnonce) utils->free(text->cnonce);
1653 if (reauth->cnonce) utils->free(reauth->cnonce);
1748 unsigned char *cnonce,
1768 cnonce,
1790 cnonce, /* client nonce */
1811 cnonce, /* client nonce */
2140 text->reauth->e[val].cnonce = NULL;
2148 text->cnonce = NULL;
2176 unsigned char *nonce = NULL, *cnonce = NULL;
2268 * digest-response = 1#( username | realm | nonce | cnonce |
2277 } else if (strcasecmp(name, "cnonce") == 0) {
2278 _plug_strdup(sparams->utils, value, (char **) &cnonce, NULL);
2403 * cnonce = "cnonce" "=" <"> cnonce-value <">
2404 * cnonce-value = qdstr-val
2436 if (cnonce == NULL) {
2437 SETERROR(sparams->utils, "required parameters missing: cnonce");
2486 #if 0 /* XXX Neither RFC 2617 nor RFC 2831 state that the cnonce
2488 _plug_strdup(sparams->utils, (char *) text->reauth->e[val].cnonce,
2489 (char **) &text->cnonce, NULL);
2541 #if 0 /* XXX Neither RFC 2617 nor RFC 2831 state that the cnonce
2543 if (text->cnonce && strcmp((char *) cnonce, (char *) text->cnonce) != 0) {
2545 "cnonce changed: authentication aborted");
2760 cnonce,
2781 cnonce,
2903 "cnonce", cnonce, TRUE) != SASL_OK) {
2951 text->reauth->e[val].cnonce = cnonce; cnonce = NULL;
2987 if (cnonce != NULL)
2988 sparams->utils->free (cnonce);
3274 unsigned char *cnonce,
3288 if(!username || !cnonce || !nonce || !ncvalue || !request || !passwd) {
3311 cnonce,
3332 cnonce, /* client nonce */
3352 cnonce, /* client nonce */
3472 text->cnonce,
3516 "cnonce", text->cnonce, TRUE) != SASL_OK) {
3689 /* create a new cnonce */
3690 text->cnonce = create_nonce(params->utils);
3691 if (text->cnonce == NULL) {
3693 "failed to create cnonce");
4279 _plug_strdup(params->utils, (char *) text->reauth->e[val].cnonce,
4280 (char **) &text->cnonce, NULL);
4307 * (username | realm | nonce | cnonce | nonce-count | qop digest-uri |
4375 * (username | realm | nonce | cnonce | nonce-count | qop | digest-uri |
4468 text->reauth->e[val].cnonce = text->cnonce; text->cnonce = NULL;
4571 if (text->cnonce) params->utils->free(text->cnonce);
4573 text->nonce = text->cnonce = NULL;