md5module.c 4.44 KB
Newer Older
1
/***********************************************************
2 3
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
4 5 6

                        All Rights Reserved

7 8
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
9
provided that the above copyright notice appear in all copies and that
10
both that copyright notice and this permission notice appear in
11
supporting documentation, and that the names of Stichting Mathematisch
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.

While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.

STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
29 30

******************************************************************/
31

32 33
/* MD5 module */

34 35 36 37 38
/* 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.) */

39 40 41

/* MD5 objects */

Barry Warsaw's avatar
Barry Warsaw committed
42
#include "Python.h"
43
#include "md5.h"
44

45
typedef struct {
Barry Warsaw's avatar
Barry Warsaw committed
46
	PyObject_HEAD
47 48 49
        MD5_CTX	md5;		/* the context holder */
} md5object;

Barry Warsaw's avatar
Barry Warsaw committed
50
staticforward PyTypeObject MD5type;
51 52 53 54 55 56 57 58

#define is_md5object(v)		((v)->ob_type == &MD5type)

static md5object *
newmd5object()
{
	md5object *md5p;

Barry Warsaw's avatar
Barry Warsaw committed
59
	md5p = PyObject_NEW(md5object, &MD5type);
60 61 62 63 64
	if (md5p == NULL)
		return NULL;

	MD5Init(&md5p->md5);	/* actual initialisation */
	return md5p;
65
}
66 67 68 69 70 71 72 73


/* MD5 methods */

static void
md5_dealloc(md5p)
	md5object *md5p;
{
Barry Warsaw's avatar
Barry Warsaw committed
74
	PyMem_DEL(md5p);
75
}
76 77 78


/* MD5 methods-as-attributes */
79

Barry Warsaw's avatar
Barry Warsaw committed
80
static PyObject *
81 82
md5_update(self, args)
	md5object *self;
Barry Warsaw's avatar
Barry Warsaw committed
83
	PyObject *args;
84
{
85
	unsigned char *cp;
86 87
	int len;

Barry Warsaw's avatar
Barry Warsaw committed
88
	if (!PyArg_Parse(args, "s#", &cp, &len))
89 90 91 92
		return NULL;

	MD5Update(&self->md5, cp, len);

Barry Warsaw's avatar
Barry Warsaw committed
93 94
	Py_INCREF(Py_None);
	return Py_None;
95
}
96

Barry Warsaw's avatar
Barry Warsaw committed
97
static PyObject *
98 99
md5_digest(self, args)
	md5object *self;
Barry Warsaw's avatar
Barry Warsaw committed
100
	PyObject *args;
101
{
102

103
	MD5_CTX mdContext;
104
	unsigned char aDigest[16];
105

Barry Warsaw's avatar
Barry Warsaw committed
106
	if (!PyArg_NoArgs(args))
107 108 109 110
		return NULL;

	/* make a temporary copy, and perform the final */
	mdContext = self->md5;
111
	MD5Final(aDigest, &mdContext);
112

Barry Warsaw's avatar
Barry Warsaw committed
113
	return PyString_FromStringAndSize((char *)aDigest, 16);
114
}
115

Barry Warsaw's avatar
Barry Warsaw committed
116
static PyObject *
117 118
md5_copy(self, args)
	md5object *self;
Barry Warsaw's avatar
Barry Warsaw committed
119
	PyObject *args;
120 121 122
{
	md5object *md5p;

Barry Warsaw's avatar
Barry Warsaw committed
123
	if (!PyArg_NoArgs(args))
124 125 126 127 128 129 130
		return NULL;

	if ((md5p = newmd5object()) == NULL)
		return NULL;

	md5p->md5 = self->md5;

Barry Warsaw's avatar
Barry Warsaw committed
131
	return (PyObject *)md5p;
132
}
133

Barry Warsaw's avatar
Barry Warsaw committed
134 135 136 137
static PyMethodDef md5_methods[] = {
	{"update",		(PyCFunction)md5_update},
	{"digest",		(PyCFunction)md5_digest},
	{"copy",		(PyCFunction)md5_copy},
138 139 140
	{NULL,			NULL}		/* sentinel */
};

Barry Warsaw's avatar
Barry Warsaw committed
141
static PyObject *
142 143 144 145
md5_getattr(self, name)
	md5object *self;
	char *name;
{
Barry Warsaw's avatar
Barry Warsaw committed
146
	return Py_FindMethod(md5_methods, (PyObject *)self, name);
147
}
148

Barry Warsaw's avatar
Barry Warsaw committed
149 150 151 152 153 154
statichere PyTypeObject MD5type = {
	PyObject_HEAD_INIT(&PyType_Type)
	0,			  /*ob_size*/
	"md5",			  /*tp_name*/
	sizeof(md5object),	  /*tp_size*/
	0,			  /*tp_itemsize*/
155
	/* methods */
Barry Warsaw's avatar
Barry Warsaw committed
156 157
	(destructor)md5_dealloc,  /*tp_dealloc*/
	0,			  /*tp_print*/
158
	(getattrfunc)md5_getattr, /*tp_getattr*/
Barry Warsaw's avatar
Barry Warsaw committed
159 160 161 162
	0,			  /*tp_setattr*/
	0,			  /*tp_compare*/
	0,			  /*tp_repr*/
        0,			  /*tp_as_number*/
163 164
};

165 166 167

/* MD5 functions */

Barry Warsaw's avatar
Barry Warsaw committed
168
static PyObject *
169
MD5_new(self, args)
Barry Warsaw's avatar
Barry Warsaw committed
170 171
	PyObject *self;
	PyObject *args;
172 173 174
{
	md5object *md5p;
	unsigned char *cp = NULL;
Guido van Rossum's avatar
Guido van Rossum committed
175
	int len = 0;
176

Barry Warsaw's avatar
Barry Warsaw committed
177
	if (!PyArg_ParseTuple(args, "|s#", &cp, &len))
Guido van Rossum's avatar
Guido van Rossum committed
178
		return NULL;
179 180 181 182 183 184 185

	if ((md5p = newmd5object()) == NULL)
		return NULL;

	if (cp)
		MD5Update(&md5p->md5, cp, len);

Barry Warsaw's avatar
Barry Warsaw committed
186
	return (PyObject *)md5p;
187 188 189
}


190 191
/* List of functions exported by this module */

Barry Warsaw's avatar
Barry Warsaw committed
192 193 194
static PyMethodDef md5_functions[] = {
	{"new",		(PyCFunction)MD5_new, 1},
	{"md5",		(PyCFunction)MD5_new, 1}, /* Backward compatibility */
Guido van Rossum's avatar
Guido van Rossum committed
195
	{NULL,		NULL}	/* Sentinel */
196 197 198 199 200 201 202 203
};


/* Initialize this module. */

void
initmd5()
{
Barry Warsaw's avatar
Barry Warsaw committed
204
	(void)Py_InitModule("md5", md5_functions);
205
}