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.) */
17 MD5_CTX md5
; /* the context holder */
20 staticforward PyTypeObject MD5type
;
22 #define is_md5object(v) ((v)->ob_type == &MD5type)
29 md5p
= PyObject_New(md5object
, &MD5type
);
33 MD5Init(&md5p
->md5
); /* actual initialisation */
41 md5_dealloc(md5object
*md5p
)
47 /* MD5 methods-as-attributes */
50 md5_update(md5object
*self
, PyObject
*args
)
55 if (!PyArg_Parse(args
, "s#", &cp
, &len
))
58 MD5Update(&self
->md5
, cp
, len
);
64 static char update_doc
[] =
67 Update the md5 object with the string arg. Repeated calls are\n\
68 equivalent to a single call with the concatenation of all the\n\
73 md5_digest(md5object
*self
, PyObject
*args
)
76 unsigned char aDigest
[16];
78 if (!PyArg_NoArgs(args
))
81 /* make a temporary copy, and perform the final */
82 mdContext
= self
->md5
;
83 MD5Final(aDigest
, &mdContext
);
85 return PyString_FromStringAndSize((char *)aDigest
, 16);
88 static char digest_doc
[] =
89 "digest() -> string\n\
91 Return the digest of the strings passed to the update() method so\n\
92 far. This is an 16-byte string which may contain non-ASCII characters,\n\
93 including null bytes.";
97 md5_hexdigest(md5object
*self
, PyObject
*args
)
100 unsigned char digest
[16];
101 unsigned char hexdigest
[32];
104 if (!PyArg_NoArgs(args
))
107 /* make a temporary copy, and perform the final */
108 mdContext
= self
->md5
;
109 MD5Final(digest
, &mdContext
);
111 /* Make hex version of the digest */
112 for(i
=j
=0; i
<16; i
++) {
114 c
= (digest
[i
] >> 4) & 0xf;
115 c
= (c
>9) ? c
+'a'-10 : c
+ '0';
117 c
= (digest
[i
] & 0xf);
118 c
= (c
>9) ? c
+'a'-10 : c
+ '0';
121 return PyString_FromStringAndSize((char*)hexdigest
, 32);
125 static char hexdigest_doc
[] =
126 "hexdigest() -> string\n\
128 Like digest(), but returns the digest as a string of hexadecimal digits.";
132 md5_copy(md5object
*self
, PyObject
*args
)
136 if (!PyArg_NoArgs(args
))
139 if ((md5p
= newmd5object()) == NULL
)
142 md5p
->md5
= self
->md5
;
144 return (PyObject
*)md5p
;
147 static char copy_doc
[] =
148 "copy() -> md5 object\n\
150 Return a copy (``clone'') of the md5 object.";
153 static PyMethodDef md5_methods
[] = {
154 {"update", (PyCFunction
)md5_update
, METH_OLDARGS
, update_doc
},
155 {"digest", (PyCFunction
)md5_digest
, METH_OLDARGS
, digest_doc
},
156 {"hexdigest", (PyCFunction
)md5_hexdigest
, METH_OLDARGS
, hexdigest_doc
},
157 {"copy", (PyCFunction
)md5_copy
, METH_OLDARGS
, copy_doc
},
158 {NULL
, NULL
} /* sentinel */
162 md5_getattr(md5object
*self
, char *name
)
164 return Py_FindMethod(md5_methods
, (PyObject
*)self
, name
);
167 static char module_doc
[] =
169 "This module implements the interface to RSA's MD5 message digest\n\
170 algorithm (see also Internet RFC 1321). Its use is quite\n\
171 straightforward: use the new() to create an md5 object. You can now\n\
172 feed this object with arbitrary strings using the update() method, and\n\
173 at any point you can ask it for the digest (a strong kind of 128-bit\n\
174 checksum, a.k.a. ``fingerprint'') of the concatenation of the strings\n\
175 fed to it so far using the digest() method.\n\
179 new([arg]) -- return a new md5 object, initialized with arg if provided\n\
180 md5([arg]) -- DEPRECATED, same as new, but for compatibility\n\
184 MD5Type -- type object for md5 objects\n\
187 static char md5type_doc
[] =
188 "An md5 represents the object used to calculate the MD5 checksum of a\n\
189 string of information.\n\
193 update() -- updates the current digest with an additional string\n\
194 digest() -- return the current digest value\n\
195 copy() -- return a copy of the current md5 object\n\
198 statichere PyTypeObject MD5type
= {
199 PyObject_HEAD_INIT(NULL
)
202 sizeof(md5object
), /*tp_size*/
205 (destructor
)md5_dealloc
, /*tp_dealloc*/
207 (getattrfunc
)md5_getattr
, /*tp_getattr*/
212 0, /*tp_as_sequence*/
221 md5type_doc
, /*tp_doc*/
228 MD5_new(PyObject
*self
, PyObject
*args
)
231 unsigned char *cp
= NULL
;
234 if (!PyArg_ParseTuple(args
, "|s#:new", &cp
, &len
))
237 if ((md5p
= newmd5object()) == NULL
)
241 MD5Update(&md5p
->md5
, cp
, len
);
243 return (PyObject
*)md5p
;
246 static char new_doc
[] =
247 "new([arg]) -> md5 object\n\
249 Return a new md5 object. If arg is present, the method call update(arg)\n\
253 /* List of functions exported by this module */
255 static PyMethodDef md5_functions
[] = {
256 {"new", (PyCFunction
)MD5_new
, METH_VARARGS
, new_doc
},
257 {"md5", (PyCFunction
)MD5_new
, METH_VARARGS
, new_doc
}, /* Backward compatibility */
258 {NULL
, NULL
} /* Sentinel */
262 /* Initialize this module. */
269 MD5type
.ob_type
= &PyType_Type
;
270 m
= Py_InitModule3("md5", md5_functions
, module_doc
);
271 d
= PyModule_GetDict(m
);
272 PyDict_SetItemString(d
, "MD5Type", (PyObject
*)&MD5type
);
273 /* No need to check the error here, the caller will do that */