home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / radi116c.zip / radius116c / src / radius / crypt.h < prev    next >
C/C++ Source or Header  |  1996-02-28  |  371b  |  20 lines

  1. /* header information for crypt.dll */
  2.  
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7.  
  8. /*
  9.  * first parameter:   string to be encrypted
  10.  * second parameter:  string to use as key
  11.  * return value:      pointer to static encrypted string
  12.  *                    valid only until next call
  13.  *
  14.  */
  15.  
  16. char *crypt(const char*, const char*);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif