4 /* This module provides an interface to the RSA Data Security,
5 Inc. MD5 Message-Digest Algorithm, described in RFC 1321.
6 It requires the files md5c.c and md5.h (which are slightly changed
7 from the versions in the RFC to avoid the "global.h" file.) */
13 #include "structmember.h"
18 md5_state_t md5
; /* the context holder */
21 static PyTypeObject MD5type
;
23 #define is_md5object(v) ((v)->ob_type == &MD5type)
30 md5p
= PyObject_New(md5object
, &MD5type
);
34 md5_init(&md5p
->md5
); /* actual initialisation */
42 md5_dealloc(md5object
*md5p
)
48 /* MD5 methods-as-attributes */
51 md5_update(md5object
*self
, PyObject
*args
)
56 if (!PyArg_ParseTuple(args
, "s#:update", &cp
, &len
))
59 md5_append(&self
->md5
, cp
, len
);
65 PyDoc_STRVAR(update_doc
,
68 Update the md5 object with the string arg. Repeated calls are\n\
69 equivalent to a single call with the concatenation of all the\n\
74 md5_digest(md5object
*self
)
76 md5_state_t mdContext
;
77 unsigned char aDigest
[16];
79 /* make a temporary copy, and perform the final */
80 mdContext
= self
->md5
;
81 md5_finish(&mdContext
, aDigest
);
83 return PyString_FromStringAndSize((char *)aDigest
, 16);
86 PyDoc_STRVAR(digest_doc
,
87 "digest() -> string\n\
89 Return the digest of the strings passed to the update() method so\n\
90 far. This is a 16-byte string which may contain non-ASCII characters,\n\
91 including null bytes.");
95 md5_hexdigest(md5object
*self
)
97 md5_state_t mdContext
;
98 unsigned char digest
[16];
99 unsigned char hexdigest
[32];
102 /* make a temporary copy, and perform the final */
103 mdContext
= self
->md5
;
104 md5_finish(&mdContext
, digest
);
106 /* Make hex version of the digest */
107 for(i
=j
=0; i
<16; i
++) {
109 c
= (digest
[i
] >> 4) & 0xf;
110 c
= (c
>9) ? c
+'a'-10 : c
+ '0';
112 c
= (digest
[i
] & 0xf);
113 c
= (c
>9) ? c
+'a'-10 : c
+ '0';
116 return PyString_FromStringAndSize((char*)hexdigest
, 32);
120 PyDoc_STRVAR(hexdigest_doc
,
121 "hexdigest() -> string\n\
123 Like digest(), but returns the digest as a string of hexadecimal digits.");
127 md5_copy(md5object
*self
)
131 if ((md5p
= newmd5object()) == NULL
)
134 md5p
->md5
= self
->md5
;
136 return (PyObject
*)md5p
;
139 PyDoc_STRVAR(copy_doc
,
140 "copy() -> md5 object\n\
142 Return a copy (``clone'') of the md5 object.");
145 static PyMethodDef md5_methods
[] = {
146 {"update", (PyCFunction
)md5_update
, METH_VARARGS
, update_doc
},
147 {"digest", (PyCFunction
)md5_digest
, METH_NOARGS
, digest_doc
},
148 {"hexdigest", (PyCFunction
)md5_hexdigest
, METH_NOARGS
, hexdigest_doc
},
149 {"copy", (PyCFunction
)md5_copy
, METH_NOARGS
, copy_doc
},
150 {NULL
, NULL
} /* sentinel */
154 md5_get_block_size(PyObject
*self
, void *closure
)
156 return PyInt_FromLong(64);
160 md5_get_digest_size(PyObject
*self
, void *closure
)
162 return PyInt_FromLong(16);
166 md5_get_name(PyObject
*self
, void *closure
)
168 return PyString_FromStringAndSize("MD5", 3);
171 static PyGetSetDef md5_getseters
[] = {
173 (getter
)md5_get_digest_size
, NULL
,
177 (getter
)md5_get_block_size
, NULL
,
181 (getter
)md5_get_name
, NULL
,
184 /* the old md5 and sha modules support 'digest_size' as in PEP 247.
185 * the old sha module also supported 'digestsize'. ugh. */
187 (getter
)md5_get_digest_size
, NULL
,
190 {NULL
} /* Sentinel */
194 PyDoc_STRVAR(module_doc
,
195 "This module implements the interface to RSA's MD5 message digest\n\
196 algorithm (see also Internet RFC 1321). Its use is quite\n\
197 straightforward: use the new() to create an md5 object. You can now\n\
198 feed this object with arbitrary strings using the update() method, and\n\
199 at any point you can ask it for the digest (a strong kind of 128-bit\n\
200 checksum, a.k.a. ``fingerprint'') of the concatenation of the strings\n\
201 fed to it so far using the digest() method.\n\
205 new([arg]) -- return a new md5 object, initialized with arg if provided\n\
206 md5([arg]) -- DEPRECATED, same as new, but for compatibility\n\
210 MD5Type -- type object for md5 objects");
212 PyDoc_STRVAR(md5type_doc
,
213 "An md5 represents the object used to calculate the MD5 checksum of a\n\
214 string of information.\n\
218 update() -- updates the current digest with an additional string\n\
219 digest() -- return the current digest value\n\
220 hexdigest() -- return the current digest as a string of hexadecimal digits\n\
221 copy() -- return a copy of the current md5 object");
223 static PyTypeObject MD5type
= {
224 PyObject_HEAD_INIT(NULL
)
226 "_md5.md5", /*tp_name*/
227 sizeof(md5object
), /*tp_size*/
230 (destructor
)md5_dealloc
, /*tp_dealloc*/
237 0, /*tp_as_sequence*/
245 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
246 md5type_doc
, /*tp_doc*/
249 0, /*tp_richcompare*/
250 0, /*tp_weaklistoffset*/
253 md5_methods
, /*tp_methods*/
255 md5_getseters
, /*tp_getset*/
262 MD5_new(PyObject
*self
, PyObject
*args
)
265 unsigned char *cp
= NULL
;
268 if (!PyArg_ParseTuple(args
, "|s#:new", &cp
, &len
))
271 if ((md5p
= newmd5object()) == NULL
)
275 md5_append(&md5p
->md5
, cp
, len
);
277 return (PyObject
*)md5p
;
280 PyDoc_STRVAR(new_doc
,
281 "new([arg]) -> md5 object\n\
283 Return a new md5 object. If arg is present, the method call update(arg)\n\
287 /* List of functions exported by this module */
289 static PyMethodDef md5_functions
[] = {
290 {"new", (PyCFunction
)MD5_new
, METH_VARARGS
, new_doc
},
291 {NULL
, NULL
} /* Sentinel */
295 /* Initialize this module. */
302 MD5type
.ob_type
= &PyType_Type
;
303 if (PyType_Ready(&MD5type
) < 0)
305 m
= Py_InitModule3("_md5", md5_functions
, module_doc
);
308 d
= PyModule_GetDict(m
);
309 PyDict_SetItemString(d
, "MD5Type", (PyObject
*)&MD5type
);
310 PyModule_AddIntConstant(m
, "digest_size", 16);
311 /* No need to check the error here, the caller will do that */