1 /*
2  * ----------------------------------------------------------------
3  * crypt function
4  * ----------------------------------------------------------------
5  * Copyright (C) 1997-2009 Jonas Kvinge
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  * $Id: nlcrypt.h 54 2009-03-18 18:23:29Z jonasio $
21  *
22  */
23 
24 #ifdef NLCRYPT_H
25 #warning "nlcrypt.h already included."
26 #else
27 #define NLCRYPT_H
28 
29 /* FUNCTION PROTOTYPES - JONAS (18.07.2001) */
30 
31 char *nlcrypt(const char *Key, const char *Salt);
32 
33 #endif
34