]>
git.ipfire.org Git - thirdparty/cups.git/blob - cups/md5passwd.c
9714aaaeae4822946759786d46769e5f989975aa
2 * MD5 password support for CUPS.
4 * Copyright 2007-2010 by Apple Inc.
5 * Copyright 1997-2005 by Easy Software Products.
7 * These coded instructions, statements, and computer programs are the
8 * property of Apple Inc. and are protected by Federal copyright
9 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 * which should have been included with this file. If this file is
11 * file is missing or damaged, see the license at "http://www.cups.org/".
13 * This file is subject to the Apple OS-Developed Software exception.
17 * Include necessary headers...
20 #include "http-private.h"
21 #include "string-private.h"
25 * 'httpMD5()' - Compute the MD5 sum of the username:group:password.
28 char * /* O - MD5 sum */
29 httpMD5(const char *username
, /* I - User name */
30 const char *realm
, /* I - Realm name */
31 const char *passwd
, /* I - Password string */
32 char md5
[33]) /* O - MD5 string */
34 _cups_md5_state_t state
; /* MD5 state info */
35 unsigned char sum
[16]; /* Sum data */
36 char line
[256]; /* Line to sum */
40 * Compute the MD5 sum of the user name, group name, and password.
43 snprintf(line
, sizeof(line
), "%s:%s:%s", username
, realm
, passwd
);
45 _cupsMD5Append(&state
, (unsigned char *)line
, (int)strlen(line
));
46 _cupsMD5Finish(&state
, sum
);
52 return (httpMD5String(sum
, md5
));
57 * 'httpMD5Final()' - Combine the MD5 sum of the username, group, and password
58 * with the server-supplied nonce value, method, and
62 char * /* O - New sum */
63 httpMD5Final(const char *nonce
, /* I - Server nonce value */
64 const char *method
, /* I - METHOD (GET, POST, etc.) */
65 const char *resource
, /* I - Resource path */
66 char md5
[33]) /* IO - MD5 sum */
68 _cups_md5_state_t state
; /* MD5 state info */
69 unsigned char sum
[16]; /* Sum data */
70 char line
[1024]; /* Line of data */
71 char a2
[33]; /* Hash of method and resource */
75 * First compute the MD5 sum of the method and resource...
78 snprintf(line
, sizeof(line
), "%s:%s", method
, resource
);
80 _cupsMD5Append(&state
, (unsigned char *)line
, (int)strlen(line
));
81 _cupsMD5Finish(&state
, sum
);
82 httpMD5String(sum
, a2
);
85 * Then combine A1 (MD5 of username, realm, and password) with the nonce
86 * and A2 (method + resource) values to get the final MD5 sum for the
90 snprintf(line
, sizeof(line
), "%s:%s:%s", md5
, nonce
, a2
);
93 _cupsMD5Append(&state
, (unsigned char *)line
, (int)strlen(line
));
94 _cupsMD5Finish(&state
, sum
);
96 return (httpMD5String(sum
, md5
));
101 * 'httpMD5String()' - Convert an MD5 sum to a character string.
104 char * /* O - MD5 sum in hex */
105 httpMD5String(const unsigned char *sum
, /* I - MD5 sum data */
107 /* O - MD5 sum in hex */
109 int i
; /* Looping var */
110 char *md5ptr
; /* Pointer into MD5 string */
111 static const char hex
[] = "0123456789abcdef";
116 * Convert the MD5 sum to hexadecimal...
119 for (i
= 16, md5ptr
= md5
; i
> 0; i
--, sum
++)
121 *md5ptr
++ = hex
[*sum
>> 4];
122 *md5ptr
++ = hex
[*sum
& 15];