blob: 978e579c86d0ea1fce9e9faf4645acbcdaf85489 [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
Damien Millerdd1c7ba1999-11-19 15:53:20 +110010#ifndef _MD5CRYPT_H
11#define _MD5CRYPT_H
12
13#include "config.h"
14
Damien Millerbeb4ba51999-12-28 15:09:35 +110015#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
Damien Millerdd1c7ba1999-11-19 15:53:20 +110016
Damien Millere7fb1032003-05-19 00:46:46 +100017int is_md5_salt(const char *);
18char *md5_crypt(const char *, const char *);
Damien Millerdd1c7ba1999-11-19 15:53:20 +110019
Damien Millerbeb4ba51999-12-28 15:09:35 +110020#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
21
Damien Millerdd1c7ba1999-11-19 15:53:20 +110022#endif /* MD5CRYPT_H */