source: main/trunk/greenstone2/common-src/src/getpw/crypt.h@ 26647

Last change on this file since 26647 was 26647, checked in by davidb, 11 years ago

Introduction of open-source code that implements the crypt() algorithm to make Greenstone code more portable. Motivation for adding this in came from work with cross-compiling (using mingw under Ubuntu for generating Windows native binaries)

File size: 146 bytes
Line 
1#ifndef CRYPT_H
2#define CRYPT_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8char *crypt(char *key, char *salt);
9
10#ifdef __cplusplus
11}
12#endif
13
14#endif
Note: See TracBrowser for help on using the repository browser.