blob: 326ac9d4c9c11f4f1f369c32993c8294ea749809 [file] [log] [blame] [raw]
/*
* asn1.h
*
* ASN.1 routines.
*
* Copyright (c) 2000 Dug Song <dugsong@monkey.org>
*
* $Id: asn1.h,v 1.3 2001/03/15 08:33:05 dugsong Exp $
*/
#ifndef ASN1_H
#define ASN1_H
#define ASN1_INTEGER 2
#define ASN1_STRING 4
#define ASN1_SEQUENCE 16
int asn1_type(buf_t buf);
int asn1_len(buf_t buf);
#endif /* ASN1_H */