1994-05-06 11:25:39 -03:00
|
|
|
/* cryptmodule.c - by Steve Majewski
|
|
|
|
*/
|
|
|
|
|
1996-12-09 19:14:26 -04:00
|
|
|
#include "Python.h"
|
1994-05-06 11:25:39 -03:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* Module crypt */
|
|
|
|
|
|
|
|
|
2000-07-10 06:57:19 -03:00
|
|
|
static PyObject *crypt_crypt(PyObject *self, PyObject *args)
|
1994-05-06 11:25:39 -03:00
|
|
|
{
|
|
|
|
char *word, *salt;
|
|
|
|
extern char * crypt();
|
|
|
|
|
1996-12-09 19:14:26 -04:00
|
|
|
if (!PyArg_Parse(args, "(ss)", &word, &salt)) {
|
1994-05-06 11:25:39 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1996-12-09 19:14:26 -04:00
|
|
|
return PyString_FromString( crypt( word, salt ) );
|
1994-05-06 11:25:39 -03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-02-01 16:12:39 -04:00
|
|
|
static char crypt_crypt__doc__[] = "\
|
|
|
|
crypt(word, salt) -> string\n\
|
|
|
|
word will usually be a user's password. salt is a 2-character string\n\
|
|
|
|
which will be used to select one of 4096 variations of DES. The characters\n\
|
|
|
|
in salt must be either \".\", \"/\", or an alphanumeric character. Returns\n\
|
|
|
|
the hashed password as a string, which will be composed of characters from\n\
|
|
|
|
the same alphabet as the salt.";
|
|
|
|
|
|
|
|
|
1996-12-09 19:14:26 -04:00
|
|
|
static PyMethodDef crypt_methods[] = {
|
2000-02-01 16:12:39 -04:00
|
|
|
{"crypt", crypt_crypt, 0, crypt_crypt__doc__},
|
1994-05-06 11:25:39 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
1998-12-04 14:50:17 -04:00
|
|
|
DL_EXPORT(void)
|
1994-05-06 11:25:39 -03:00
|
|
|
initcrypt()
|
|
|
|
{
|
1996-12-09 19:14:26 -04:00
|
|
|
Py_InitModule("crypt", crypt_methods);
|
1994-05-06 11:25:39 -03:00
|
|
|
}
|