]> andersk Git - openssh.git/blame - md5crypt.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / md5crypt.h
CommitLineData
caf3bc51 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 */
9
0b202697 10/* $Id$ */
11
caf3bc51 12#ifndef _MD5CRYPT_H
13#define _MD5CRYPT_H
14
15#include "config.h"
16
d94aa2ae 17#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
caf3bc51 18
1bbcb4cd 19int is_md5_salt(const char *);
20char *md5_crypt(const char *, const char *);
caf3bc51 21
d94aa2ae 22#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
23
caf3bc51 24#endif /* MD5CRYPT_H */
This page took 0.243089 seconds and 5 git commands to generate.