A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://svn.python.org/projects/python/branches/r22b1-branch/Modules/cryptmodule.c below:

/* cryptmodule.c - by Steve Majewski */ #include "Python.h" #include /* Module crypt */ static PyObject *crypt_crypt(PyObject *self, PyObject *args) { char *word, *salt; extern char * crypt(const char *, const char *); if (!PyArg_Parse(args, "(ss)", &word, &salt)) { return NULL; } return PyString_FromString( crypt( word, salt ) ); } 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."; static PyMethodDef crypt_methods[] = { {"crypt", crypt_crypt, METH_OLDARGS, crypt_crypt__doc__}, {NULL, NULL} /* sentinel */ }; DL_EXPORT(void) initcrypt(void) { Py_InitModule("crypt", crypt_methods); }

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4