blob: 21356fbe7621535e175aeae3b3ef70d49d295061 [file] [log] [blame]
Damien Millerdd1c7ba1999-11-19 15:53:20 +11001/*
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
Damien Millere9cf3572001-02-09 12:55:35 +110018/* $Id: md5crypt.h,v 1.3 2001/02/09 01:55:36 djm Exp $ */
19
Damien Millerdd1c7ba1999-11-19 15:53:20 +110020#ifndef _MD5CRYPT_H
21#define _MD5CRYPT_H
22
23#include "config.h"
24
Damien Millerbeb4ba51999-12-28 15:09:35 +110025#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
Damien Millerdd1c7ba1999-11-19 15:53:20 +110026
27int is_md5_salt(const char *salt);
28char *md5_crypt(const char *pw, const char *salt);
29
Damien Millerbeb4ba51999-12-28 15:09:35 +110030#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
31
Damien Millerdd1c7ba1999-11-19 15:53:20 +110032#endif /* MD5CRYPT_H */