crypt module (Steve M's)

This commit is contained in:
Guido van Rossum 1994-05-06 14:25:39 +00:00
parent 7a325c385b
commit e4c6131baa
4 changed files with 37 additions and 320 deletions

36
Modules/cryptmodule.c Normal file
View file

@ -0,0 +1,36 @@
/* cryptmodule.c - by Steve Majewski
*/
#include "allobjects.h"
#include "modsupport.h"
#include <sys/types.h>
/* 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);
}