1 /* digest-md5.c --- Test the DIGEST-MD5 mechanism.
2 * Copyright (C) 2002, 2003, 2004 Simon Josefsson
4 * This file is part of GNU SASL.
6 * GNU SASL is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GNU SASL is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GNU SASL; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
33 #define PASSWORD "Open, Sesame"
34 #define USERNAME "Ali Baba"
35 /* "Ali " "\xC2\xAD" "Bab" "\xC2\xAA" */
36 /* "Al\xC2\xAA""dd\xC2\xAD""in\xC2\xAE" */
38 #define SERVICE "imap"
39 #define HOSTNAME "hostname"
43 callback (Gsasl
* ctx
, Gsasl_session
* sctx
, Gsasl_property prop
)
47 int rc
= GSASL_NO_CALLBACK
;
49 /* Get user info from user. */
54 gsasl_property_set (sctx
, prop
, PASSWORD
);
59 gsasl_property_set (sctx
, prop
, USERNAME
);
65 gsasl_property_set (sctx
, prop
, AUTHZID
);
67 gsasl_property_set (sctx
, prop
, NULL
);
73 gsasl_property_set (sctx
, prop
, SERVICE
);
79 gsasl_property_set (sctx
, prop
, REALM
);
81 gsasl_property_set (sctx
, prop
, NULL
);
89 gsasl_property_set (sctx
, prop
, HOSTNAME
);
94 fail ("Unknown callback property %d\n", prop
);
105 Gsasl_session
*server
= NULL
, *client
= NULL
;
111 res
= gsasl_init (&ctx
);
114 fail ("gsasl_init() failed (%d):\n%s\n", res
, gsasl_strerror (res
));
118 gsasl_callback_set (ctx
, callback
);
120 for (i
= 0; i
< 5; i
++)
122 res
= gsasl_server_start (ctx
, "DIGEST-MD5", &server
);
125 fail ("gsasl_init() failed (%d):\n%s\n", res
, gsasl_strerror (res
));
128 res
= gsasl_client_start (ctx
, "DIGEST-MD5", &client
);
131 fail ("gsasl_init() failed (%d):\n%s\n", res
, gsasl_strerror (res
));
135 /* Server begins... */
137 res
= gsasl_step (server
, NULL
, 0, &s1
, &s1len
);
138 if (res
!= GSASL_NEEDS_MORE
)
140 fail ("gsasl_step(1) failed (%d):\n%s\n", res
,
141 gsasl_strerror (res
));
146 printf ("S: %.*s\n", s1len
, s1
);
148 /* Client respond... */
150 res
= gsasl_step (client
, s1
, s1len
, &s2
, &s2len
);
152 if (res
!= GSASL_NEEDS_MORE
)
154 fail ("gsasl_step(2) failed (%d):\n%s\n", res
,
155 gsasl_strerror (res
));
160 printf ("C: %.*s\n", s2len
, s2
);
162 /* Server finishes... */
164 res
= gsasl_step (server
, s2
, s2len
, &s1
, &s1len
);
166 if (res
!= GSASL_NEEDS_MORE
)
168 fail ("gsasl_step(3) failed (%d):\n%s\n", res
,
169 gsasl_strerror (res
));
174 printf ("S: %.*s\n", s1len
, s1
);
176 /* Client finishes... */
178 res
= gsasl_step (client
, s1
, s1len
, &s2
, &s2len
);
182 fail ("gsasl_step(4) failed (%d):\n%s\n", res
,
183 gsasl_strerror (res
));
189 /* Solaris x86 crashes here if s2 is NULL, even when s2len
192 printf ("C: %.*s\n", s2len
, s2
);
197 /* Server is done. */
199 res
= gsasl_step (server
, s2
, s2len
, &s1
, &s1len
);
203 fail ("gsasl_step(5) failed (%d):\n%s\n", res
,
204 gsasl_strerror (res
));
210 fail ("gsasl_step() failed, additional length=%d:\n", s1len
);
220 gsasl_finish (client
);
221 gsasl_finish (server
);