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/jar/Modules/cryptmodule.c below:

/* cryptmodule.c - by Steve Majewski */ #include "allobjects.h" #include /* Module crypt */ static object *crypt_crypt(self, args) object *self, *args; { char *word, *salt; extern char * crypt(); struct passwd *p; if (!getargs(args, "(ss)", &word, &salt)) { return NULL; } return newstringobject( crypt( word, salt ) ); } static struct methodlist crypt_methods[] = { {"crypt", crypt_crypt}, {NULL, NULL} /* sentinel */ }; void initcrypt() { 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