Revision 16801,
964 bytes
checked in by ghudson, 23 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r16800,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* |
---|
2 | * ---------------------------------------------------------------------------- |
---|
3 | * "THE BEER-WARE LICENSE" (Revision 42): |
---|
4 | * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you |
---|
5 | * can do whatever you want with this stuff. If we meet some day, and you think |
---|
6 | * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp |
---|
7 | * ---------------------------------------------------------------------------- |
---|
8 | */ |
---|
9 | |
---|
10 | /* |
---|
11 | * Ported from FreeBSD to Linux, only minimal changes. --marekm |
---|
12 | */ |
---|
13 | |
---|
14 | /* |
---|
15 | * Adapted from shadow-19990607 by Tudor Bosman, tudorb@jm.nu |
---|
16 | */ |
---|
17 | |
---|
18 | /* $Id: md5crypt.h,v 1.1.1.1 2001-11-15 19:24:15 ghudson Exp $ */ |
---|
19 | |
---|
20 | #ifndef _MD5CRYPT_H |
---|
21 | #define _MD5CRYPT_H |
---|
22 | |
---|
23 | #include "config.h" |
---|
24 | |
---|
25 | #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) |
---|
26 | |
---|
27 | int is_md5_salt(const char *salt); |
---|
28 | char *md5_crypt(const char *pw, const char *salt); |
---|
29 | |
---|
30 | #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */ |
---|
31 | |
---|
32 | #endif /* MD5CRYPT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.