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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-05-16
|
326 b
|
23 lines
/*
asn1.h
ASN.1 routines.
Copyright (c) 2000 Dug Song <dugsong@monkey.org>
$Id: asn1.h,v 1.1 2000/05/16 17:31:13 dugsong Exp $
*/
#ifndef ASN1_H
#define ASN1_H
#define ASN1_INTEGER 2
#define ASN1_STRING 4
#define ASN1_SEQUENCE 16
int asn1_type(u_char **buf);
int asn1_len(u_char **buf);
#endif /* ASN1_H */