home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / sectools / dsniff / base64.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-16  |  204 b   |  16 lines

  1. /*
  2.   base64.h
  3.  
  4.   Base-64 routines.
  5.  
  6.   $Id: base64.h,v 1.1 2000/05/16 17:31:14 dugsong Exp $
  7. */
  8.  
  9. #ifndef BASE64_H
  10. #define BASE64_H
  11.  
  12. int    base64_pton(char const *, u_char *, size_t);
  13.  
  14. #endif /* BASE64_H */
  15.  
  16.