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

  1. /*
  2.   asn1.h
  3.  
  4.   ASN.1 routines.
  5.  
  6.   Copyright (c) 2000 Dug Song <dugsong@monkey.org>
  7.   
  8.   $Id: asn1.h,v 1.1 2000/05/16 17:31:13 dugsong Exp $
  9. */
  10.  
  11. #ifndef ASN1_H
  12. #define ASN1_H
  13.  
  14. #define ASN1_INTEGER    2
  15. #define ASN1_STRING    4
  16. #define ASN1_SEQUENCE    16
  17.  
  18. int    asn1_type(u_char **buf);
  19. int    asn1_len(u_char **buf);
  20.  
  21. #endif /* ASN1_H */
  22.  
  23.