1994-08-01 08:34:53 -03:00
|
|
|
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
/* MD5 module */
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
/* This module provides an interface to the RSA Data Security,
|
|
|
|
Inc. MD5 Message-Digest Algorithm, described in RFC 1321.
|
|
|
|
It requires the files md5c.c and md5.h (which are slightly changed
|
|
|
|
from the versions in the RFC to avoid the "global.h" file.) */
|
|
|
|
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
|
|
|
/* MD5 objects */
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
#include "Python.h"
|
2005-08-21 15:45:59 -03:00
|
|
|
#include "structmember.h"
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
#include "md5.h"
|
1994-08-01 08:34:53 -03:00
|
|
|
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
typedef struct {
|
1996-12-09 18:32:36 -04:00
|
|
|
PyObject_HEAD
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_state_t md5; /* the context holder */
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
} md5object;
|
|
|
|
|
2002-07-17 13:30:39 -03:00
|
|
|
static PyTypeObject MD5type;
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
|
|
|
#define is_md5object(v) ((v)->ob_type == &MD5type)
|
|
|
|
|
|
|
|
static md5object *
|
2000-07-21 03:00:07 -03:00
|
|
|
newmd5object(void)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
|
|
|
md5object *md5p;
|
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
md5p = PyObject_New(md5object, &MD5type);
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
if (md5p == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_init(&md5p->md5); /* actual initialisation */
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
return md5p;
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* MD5 methods */
|
|
|
|
|
|
|
|
static void
|
2000-07-10 09:43:58 -03:00
|
|
|
md5_dealloc(md5object *md5p)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
2000-05-03 20:44:39 -03:00
|
|
|
PyObject_Del(md5p);
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
/* MD5 methods-as-attributes */
|
1994-08-01 08:34:53 -03:00
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyObject *
|
2000-07-10 09:43:58 -03:00
|
|
|
md5_update(md5object *self, PyObject *args)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
1994-08-01 08:34:53 -03:00
|
|
|
unsigned char *cp;
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
int len;
|
|
|
|
|
2002-03-31 11:27:00 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "s#:update", &cp, &len))
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
return NULL;
|
|
|
|
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_append(&self->md5, cp, len);
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(update_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"update (arg)\n\
|
|
|
|
\n\
|
|
|
|
Update the md5 object with the string arg. Repeated calls are\n\
|
|
|
|
equivalent to a single call with the concatenation of all the\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
arguments.");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyObject *
|
2002-03-25 16:46:46 -04:00
|
|
|
md5_digest(md5object *self)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_state_t mdContext;
|
1994-08-01 08:34:53 -03:00
|
|
|
unsigned char aDigest[16];
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
|
|
|
/* make a temporary copy, and perform the final */
|
|
|
|
mdContext = self->md5;
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_finish(&mdContext, aDigest);
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
return PyString_FromStringAndSize((char *)aDigest, 16);
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(digest_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"digest() -> string\n\
|
|
|
|
\n\
|
|
|
|
Return the digest of the strings passed to the update() method so\n\
|
2003-07-08 18:17:25 -03:00
|
|
|
far. This is a 16-byte string which may contain non-ASCII characters,\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
including null bytes.");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
|
|
|
|
2000-08-15 02:59:44 -03:00
|
|
|
static PyObject *
|
2002-03-25 16:46:46 -04:00
|
|
|
md5_hexdigest(md5object *self)
|
2000-08-15 02:59:44 -03:00
|
|
|
{
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_state_t mdContext;
|
2000-08-15 02:59:44 -03:00
|
|
|
unsigned char digest[16];
|
|
|
|
unsigned char hexdigest[32];
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
/* make a temporary copy, and perform the final */
|
|
|
|
mdContext = self->md5;
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_finish(&mdContext, digest);
|
2000-08-15 02:59:44 -03:00
|
|
|
|
|
|
|
/* Make hex version of the digest */
|
|
|
|
for(i=j=0; i<16; i++) {
|
|
|
|
char c;
|
|
|
|
c = (digest[i] >> 4) & 0xf;
|
|
|
|
c = (c>9) ? c+'a'-10 : c + '0';
|
|
|
|
hexdigest[j++] = c;
|
|
|
|
c = (digest[i] & 0xf);
|
|
|
|
c = (c>9) ? c+'a'-10 : c + '0';
|
|
|
|
hexdigest[j++] = c;
|
|
|
|
}
|
|
|
|
return PyString_FromStringAndSize((char*)hexdigest, 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(hexdigest_doc,
|
2000-08-15 02:59:44 -03:00
|
|
|
"hexdigest() -> string\n\
|
|
|
|
\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
Like digest(), but returns the digest as a string of hexadecimal digits.");
|
2000-08-15 02:59:44 -03:00
|
|
|
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyObject *
|
2002-03-25 16:46:46 -04:00
|
|
|
md5_copy(md5object *self)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
|
|
|
md5object *md5p;
|
|
|
|
|
|
|
|
if ((md5p = newmd5object()) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
md5p->md5 = self->md5;
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
return (PyObject *)md5p;
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(copy_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"copy() -> md5 object\n\
|
|
|
|
\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
Return a copy (``clone'') of the md5 object.");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyMethodDef md5_methods[] = {
|
2002-03-31 11:27:00 -04:00
|
|
|
{"update", (PyCFunction)md5_update, METH_VARARGS, update_doc},
|
2002-03-25 16:46:46 -04:00
|
|
|
{"digest", (PyCFunction)md5_digest, METH_NOARGS, digest_doc},
|
|
|
|
{"hexdigest", (PyCFunction)md5_hexdigest, METH_NOARGS, hexdigest_doc},
|
|
|
|
{"copy", (PyCFunction)md5_copy, METH_NOARGS, copy_doc},
|
2000-08-15 02:59:44 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
};
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyObject *
|
2005-08-21 15:45:59 -03:00
|
|
|
md5_get_block_size(PyObject *self, void *closure)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
2005-08-21 15:45:59 -03:00
|
|
|
return PyInt_FromLong(64);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
md5_get_digest_size(PyObject *self, void *closure)
|
|
|
|
{
|
|
|
|
return PyInt_FromLong(16);
|
|
|
|
}
|
2001-11-02 17:41:00 -04:00
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
static PyObject *
|
|
|
|
md5_get_name(PyObject *self, void *closure)
|
|
|
|
{
|
|
|
|
return PyString_FromStringAndSize("MD5", 3);
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
|
2005-08-21 15:45:59 -03:00
|
|
|
static PyGetSetDef md5_getseters[] = {
|
|
|
|
{"digest_size",
|
|
|
|
(getter)md5_get_digest_size, NULL,
|
|
|
|
NULL,
|
|
|
|
NULL},
|
|
|
|
{"block_size",
|
|
|
|
(getter)md5_get_block_size, NULL,
|
|
|
|
NULL,
|
|
|
|
NULL},
|
|
|
|
{"name",
|
|
|
|
(getter)md5_get_name, NULL,
|
|
|
|
NULL,
|
|
|
|
NULL},
|
|
|
|
/* the old md5 and sha modules support 'digest_size' as in PEP 247.
|
|
|
|
* the old sha module also supported 'digestsize'. ugh. */
|
|
|
|
{"digestsize",
|
|
|
|
(getter)md5_get_digest_size, NULL,
|
|
|
|
NULL,
|
|
|
|
NULL},
|
|
|
|
{NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(module_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"This module implements the interface to RSA's MD5 message digest\n\
|
|
|
|
algorithm (see also Internet RFC 1321). Its use is quite\n\
|
|
|
|
straightforward: use the new() to create an md5 object. You can now\n\
|
|
|
|
feed this object with arbitrary strings using the update() method, and\n\
|
|
|
|
at any point you can ask it for the digest (a strong kind of 128-bit\n\
|
2000-07-16 09:04:32 -03:00
|
|
|
checksum, a.k.a. ``fingerprint'') of the concatenation of the strings\n\
|
1998-10-14 10:46:57 -03:00
|
|
|
fed to it so far using the digest() method.\n\
|
|
|
|
\n\
|
|
|
|
Functions:\n\
|
|
|
|
\n\
|
|
|
|
new([arg]) -- return a new md5 object, initialized with arg if provided\n\
|
|
|
|
md5([arg]) -- DEPRECATED, same as new, but for compatibility\n\
|
|
|
|
\n\
|
|
|
|
Special Objects:\n\
|
|
|
|
\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
MD5Type -- type object for md5 objects");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(md5type_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"An md5 represents the object used to calculate the MD5 checksum of a\n\
|
|
|
|
string of information.\n\
|
|
|
|
\n\
|
|
|
|
Methods:\n\
|
|
|
|
\n\
|
|
|
|
update() -- updates the current digest with an additional string\n\
|
|
|
|
digest() -- return the current digest value\n\
|
2002-10-11 18:53:01 -03:00
|
|
|
hexdigest() -- return the current digest as a string of hexadecimal digits\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
copy() -- return a copy of the current md5 object");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
2002-07-17 13:49:03 -03:00
|
|
|
static PyTypeObject MD5type = {
|
2000-02-04 16:33:49 -04:00
|
|
|
PyObject_HEAD_INIT(NULL)
|
1996-12-09 18:32:36 -04:00
|
|
|
0, /*ob_size*/
|
2005-08-21 15:45:59 -03:00
|
|
|
"_md5.md5", /*tp_name*/
|
1996-12-09 18:32:36 -04:00
|
|
|
sizeof(md5object), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
/* methods */
|
1996-12-09 18:32:36 -04:00
|
|
|
(destructor)md5_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
2005-08-21 15:45:59 -03:00
|
|
|
0, /*tp_getattr*/
|
1996-12-09 18:32:36 -04:00
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
1998-10-14 10:46:57 -03:00
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
|
|
|
0, /*tp_hash*/
|
|
|
|
0, /*tp_call*/
|
|
|
|
0, /*tp_str*/
|
|
|
|
0, /*tp_getattro*/
|
|
|
|
0, /*tp_setattro*/
|
|
|
|
0, /*tp_as_buffer*/
|
2005-08-21 15:45:59 -03:00
|
|
|
Py_TPFLAGS_DEFAULT, /*tp_flags*/
|
1998-10-14 10:46:57 -03:00
|
|
|
md5type_doc, /*tp_doc*/
|
2005-08-21 15:45:59 -03:00
|
|
|
0, /*tp_traverse*/
|
|
|
|
0, /*tp_clear*/
|
|
|
|
0, /*tp_richcompare*/
|
|
|
|
0, /*tp_weaklistoffset*/
|
|
|
|
0, /*tp_iter*/
|
|
|
|
0, /*tp_iternext*/
|
|
|
|
md5_methods, /*tp_methods*/
|
|
|
|
0, /*tp_members*/
|
|
|
|
md5_getseters, /*tp_getset*/
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
};
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
|
|
|
|
/* MD5 functions */
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyObject *
|
2000-07-10 09:43:58 -03:00
|
|
|
MD5_new(PyObject *self, PyObject *args)
|
1994-08-01 08:34:53 -03:00
|
|
|
{
|
|
|
|
md5object *md5p;
|
|
|
|
unsigned char *cp = NULL;
|
1995-07-26 14:33:10 -03:00
|
|
|
int len = 0;
|
1994-08-01 08:34:53 -03:00
|
|
|
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "|s#:new", &cp, &len))
|
1995-07-26 14:33:10 -03:00
|
|
|
return NULL;
|
1994-08-01 08:34:53 -03:00
|
|
|
|
|
|
|
if ((md5p = newmd5object()) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (cp)
|
2006-04-21 07:40:58 -03:00
|
|
|
md5_append(&md5p->md5, cp, len);
|
1994-08-01 08:34:53 -03:00
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
return (PyObject *)md5p;
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(new_doc,
|
1998-10-14 10:46:57 -03:00
|
|
|
"new([arg]) -> md5 object\n\
|
|
|
|
\n\
|
|
|
|
Return a new md5 object. If arg is present, the method call update(arg)\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
is made.");
|
1998-10-14 10:46:57 -03:00
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
/* List of functions exported by this module */
|
|
|
|
|
1996-12-09 18:32:36 -04:00
|
|
|
static PyMethodDef md5_functions[] = {
|
2000-08-02 23:06:16 -03:00
|
|
|
{"new", (PyCFunction)MD5_new, METH_VARARGS, new_doc},
|
1995-07-26 14:33:10 -03:00
|
|
|
{NULL, NULL} /* Sentinel */
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize this module. */
|
|
|
|
|
2002-08-01 23:27:13 -03:00
|
|
|
PyMODINIT_FUNC
|
2005-08-21 15:45:59 -03:00
|
|
|
init_md5(void)
|
* mymalloc.h: always allocate one extra byte, since some malloc's
return NULL for malloc(0) or realloc(p, 0). (This should be done
differently than wasting one byte, but alas...)
* Moved "add'l libraries" option in Makefile to an earlier place.
* Remove argument compatibility hacks (b) and (c).
* Add grey2mono, dither2mono and mono2grey to imageop.
* Dup the fd in socket.fromfd().
* Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects
Makefile and config.c.
* socketmodule.c: added socket.fromfd(fd, family, type, [proto]),
converted socket() to use of getargs().
1992-12-14 12:59:51 -04:00
|
|
|
{
|
2001-11-02 18:05:06 -04:00
|
|
|
PyObject *m, *d;
|
2000-02-04 16:33:49 -04:00
|
|
|
|
|
|
|
MD5type.ob_type = &PyType_Type;
|
2005-08-21 15:45:59 -03:00
|
|
|
if (PyType_Ready(&MD5type) < 0)
|
|
|
|
return;
|
|
|
|
m = Py_InitModule3("_md5", md5_functions, module_doc);
|
2006-01-19 02:09:39 -04:00
|
|
|
if (m == NULL)
|
|
|
|
return;
|
1998-10-14 10:46:57 -03:00
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
PyDict_SetItemString(d, "MD5Type", (PyObject *)&MD5type);
|
2001-11-02 18:05:06 -04:00
|
|
|
PyModule_AddIntConstant(m, "digest_size", 16);
|
1998-10-14 10:46:57 -03:00
|
|
|
/* No need to check the error here, the caller will do that */
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|