md5crypt.h revision 256281
1105197Ssam/*
2105197Ssam * ----------------------------------------------------------------------------
3105197Ssam * "THE BEER-WARE LICENSE" (Revision 42):
4139823Simp * <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
5105197Ssam * can do whatever you want with this stuff. If we meet some day, and you think
6105197Ssam * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7105197Ssam * ----------------------------------------------------------------------------
8105197Ssam */
9105197Ssam
10105197Ssam/* $Id: md5crypt.h,v 1.4 2003/05/18 14:46:46 djm Exp $ */
11105197Ssam
12105197Ssam#ifndef _MD5CRYPT_H
13105197Ssam#define _MD5CRYPT_H
14105197Ssam
15105197Ssam#include "config.h"
16105197Ssam
17105197Ssam#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
18105197Ssam
19105197Ssamint is_md5_salt(const char *);
20105197Ssamchar *md5_crypt(const char *, const char *);
21105197Ssam
22105197Ssam#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
23105197Ssam
24105197Ssam#endif /* MD5CRYPT_H */
25105197Ssam