diff options
Diffstat (limited to 'src/testcurl/test_digestauth2.c')
-rw-r--r-- | src/testcurl/test_digestauth2.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/testcurl/test_digestauth2.c b/src/testcurl/test_digestauth2.c index dc6c4cb4..f92d6d14 100644 --- a/src/testcurl/test_digestauth2.c +++ b/src/testcurl/test_digestauth2.c | |||
@@ -254,16 +254,11 @@ _checkCURLE_OK_func (CURLcode code, const char *curlFunc, | |||
254 | /* The hex form of MD5("test_user:TestRealm:test pass") */ | 254 | /* The hex form of MD5("test_user:TestRealm:test pass") */ |
255 | #define USERDIGEST1_MD5_BIN 0xd8, 0xb4, 0xa6, 0xd0, 0x01, 0x13, 0x07, 0xb7, \ | 255 | #define USERDIGEST1_MD5_BIN 0xd8, 0xb4, 0xa6, 0xd0, 0x01, 0x13, 0x07, 0xb7, \ |
256 | 0x67, 0x94, 0xea, 0x66, 0x86, 0x03, 0x6b, 0x43 | 256 | 0x67, 0x94, 0xea, 0x66, 0x86, 0x03, 0x6b, 0x43 |
257 | /* The hex form of SHA-256("test_user:TestRealm:test pass") */ | ||
258 | /* The binary form of SHA-256("test_user:TestRealm:test pass") */ | 257 | /* The binary form of SHA-256("test_user:TestRealm:test pass") */ |
259 | #define USERDIGEST1_SHA256_BIN 0xc3, 0x4e, 0x16, 0x5a, 0x17, 0x0f, 0xe5, \ | 258 | #define USERDIGEST1_SHA256_BIN 0xc3, 0x4e, 0x16, 0x5a, 0x17, 0x0f, 0xe5, \ |
260 | 0xac, 0x04, 0xf1, 0x6e, 0x46, 0x48, 0x2b, 0xa0, 0xc6, 0x56, 0xc1, 0xfb, \ | 259 | 0xac, 0x04, 0xf1, 0x6e, 0x46, 0x48, 0x2b, 0xa0, 0xc6, 0x56, 0xc1, 0xfb, \ |
261 | 0x8f, 0x66, 0xa6, 0xd6, 0x3f, 0x91, 0x12, 0xf8, 0x56, 0xa5, 0xec, 0x6d, \ | 260 | 0x8f, 0x66, 0xa6, 0xd6, 0x3f, 0x91, 0x12, 0xf8, 0x56, 0xa5, 0xec, 0x6d, \ |
262 | 0x6d | 261 | 0x6d |
263 | /* "titkos szuperügynök" in UTF-8 */ | ||
264 | #define USERNAME2 "titkos szuper" "\xC3\xBC" "gyn" "\xC3\xB6" "k" | ||
265 | /* percent-encoded username */ | ||
266 | #define USERNAME2_PCTENC "titkos%20szuper%C3%BCgyn%C3%B6k" | ||
267 | #define PASSWORD_VALUE "test pass" | 262 | #define PASSWORD_VALUE "test pass" |
268 | #define OPAQUE_VALUE "opaque+content" /* Base64 character set */ | 263 | #define OPAQUE_VALUE "opaque+content" /* Base64 character set */ |
269 | 264 | ||