cpython/Modules/cryptmodule.c

45 lines
1.1 KiB
C
Raw Normal View History

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(const char *, const char *);
1994-05-06 11:25:39 -03:00
if (!PyArg_ParseTuple(args, "ss:crypt", &word, &salt)) {
1994-05-06 11:25:39 -03:00
return NULL;
}
2002-06-11 03:22:31 -03: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 11:25:39 -03:00
}
2002-06-13 17:33:02 -03: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-13 17:33:02 -03:00
the same alphabet as the salt.");
1996-12-09 19:14:26 -04:00
static PyMethodDef crypt_methods[] = {
{"crypt", crypt_crypt, METH_VARARGS, crypt_crypt__doc__},
1994-05-06 11:25:39 -03:00
{NULL, NULL} /* sentinel */
};
PyMODINIT_FUNC
initcrypt(void)
1994-05-06 11:25:39 -03:00
{
1996-12-09 19:14:26 -04:00
Py_InitModule("crypt", crypt_methods);
1994-05-06 11:25:39 -03:00
}