aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-04 12:33:56 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-04 12:37:02 +0300
commit0130c23c28a9df8b088117ab9023179bed074179 (patch)
treecb800b2b901a41cdb15bee85048952308ed5259f /src/testcurl
parent87fe3bdd88ff78267a72c81f23d89e8877a0baa5 (diff)
downloadlibmicrohttpd-0130c23c28a9df8b088117ab9023179bed074179.tar.gz
libmicrohttpd-0130c23c28a9df8b088117ab9023179bed074179.zip
test_digestauth2: removed copy-paste leftovers
Diffstat (limited to 'src/testcurl')
-rw-r--r--src/testcurl/test_digestauth2.c5
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