blob: 13c79ba527bee83e9cad9bfee2141d405cb0dea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* cryptmodule.c - by Steve Majewski
*/
#include "allobjects.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);
}
|