198937Sdes/*
298937Sdes * ----------------------------------------------------------------------------
398937Sdes * "THE BEER-WARE LICENSE" (Revision 42):
498937Sdes * <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
598937Sdes * can do whatever you want with this stuff. If we meet some day, and you think
698937Sdes * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
798937Sdes * ----------------------------------------------------------------------------
898937Sdes */
998937Sdes
10124208Sdes/* $Id: md5crypt.h,v 1.4 2003/05/18 14:46:46 djm Exp $ */
1198937Sdes
1298937Sdes#ifndef _MD5CRYPT_H
1398937Sdes#define _MD5CRYPT_H
1498937Sdes
1598937Sdes#include "config.h"
1698937Sdes
1798937Sdes#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
1898937Sdes
19124208Sdesint is_md5_salt(const char *);
20124208Sdeschar *md5_crypt(const char *, const char *);
2198937Sdes
2298937Sdes#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
2398937Sdes
2498937Sdes#endif /* MD5CRYPT_H */
25