]> andersk Git - openssh.git/blob - md5crypt.h
- Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
[openssh.git] / md5crypt.h
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 #ifndef _MD5CRYPT_H
19 #define _MD5CRYPT_H
20
21 #include "config.h"
22
23 #include <unistd.h>
24 #include <string.h>
25
26 #ifdef HAVE_OPENSSL
27 #include <openssl/md5.h>
28 #endif
29
30 #ifdef HAVE_SSL
31 #include <ssl/md5.h>
32 #endif
33
34 int is_md5_salt(const char *salt);
35 char *md5_crypt(const char *pw, const char *salt);
36
37 #endif /* MD5CRYPT_H */
This page took 0.042976 seconds and 5 git commands to generate.