home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 35 Internet
/
35-Internet.zip
/
radi116c.zip
/
radius116c
/
src
/
whoson
/
crypt.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-28
|
371b
|
20 lines
/* header information for crypt.dll */
#ifdef __cplusplus
extern "C"
{
#endif
/*
* first parameter: string to be encrypted
* second parameter: string to use as key
* return value: pointer to static encrypted string
* valid only until next call
*
*/
char *crypt(const char*, const char*);
#ifdef __cplusplus
}
#endif