summaryrefslogtreecommitdiffstats
path: root/passwd.h
blob: 4275fc04d20faef700ecfea82e50669a7e2ecda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* passwd.h  -- Creates SHA1 hash from a clear text password

 */

#ifndef PASSWD_H
#define PASSWD_H

#define passwdhash(p) _passwdhash(p, __FILE__, __LINE__)
char *_passwdhash(const char *pwd, const char *, const int);

#endif