HAMMER 60I/Many: Mirroring
[dragonfly.git] / crypto / openssh-5 / md5crypt.h
blob2341e2c1251ead8aa13b17f804c813aaf98dc2b5
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 */
10 /* $Id: md5crypt.h,v 1.4 2003/05/18 14:46:46 djm Exp $ */
12 #ifndef _MD5CRYPT_H
13 #define _MD5CRYPT_H
15 #include "config.h"
17 #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
19 int is_md5_salt(const char *);
20 char *md5_crypt(const char *, const char *);
22 #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
24 #endif /* MD5CRYPT_H */