cpython/Modules/cryptmodule.c

45 lines
1.1 KiB
C
Raw Normal View History

1994-05-06 22:25:39 +08:00
/* cryptmodule.c - by Steve Majewski
*/
1996-12-10 07:14:26 +08:00
#include "Python.h"
1994-05-06 22:25:39 +08:00
#include <sys/types.h>
/* Module crypt */
2000-07-10 17:57:19 +08:00
static PyObject *crypt_crypt(PyObject *self, PyObject *args)
1994-05-06 22:25:39 +08:00
{
char *word, *salt;
extern char * crypt(const char *, const char *);
1994-05-06 22:25:39 +08:00
if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) {
1994-05-06 22:25:39 +08:00
return NULL;
}
2002-06-11 14:22:31 +08:00
/* On some platforms (AtheOS) crypt returns NULL for an invalid
salt. Return None in that case. XXX Maybe raise an exception? */
return Py_BuildValue("s", crypt(word, salt));
1994-05-06 22:25:39 +08:00
}
2002-06-14 04:33:02 +08:00
PyDoc_STRVAR(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\
2002-06-14 04:33:02 +08:00
the same alphabet as the salt.");
1996-12-10 07:14:26 +08:00
static PyMethodDef crypt_methods[] = {
{"crypt", crypt_crypt, METH_VARARGS, crypt_crypt__doc__},
1994-05-06 22:25:39 +08:00
{NULL, NULL} /* sentinel */
};
PyMODINIT_FUNC
initcrypt(void)
1994-05-06 22:25:39 +08:00
{
1996-12-10 07:14:26 +08:00
Py_InitModule("crypt", crypt_methods);
1994-05-06 22:25:39 +08:00
}