mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
10566c8be3
* javascript * kernel * ldap * length * macros * maintained * manager * matching * maximum * mechanism * memory * method * mimic * minimum * modifiable * modifiers * modifying * multiple * necessary * normalized * objectclass * occurrence * occurring * offered * operation * original * overridden * parameter * permanent * preemptively * printable * protocol * provider * really * redistribution * referenced * refresh * regardless * registered * request * reserved * resource * response * sanity * separated * setconcurrency * should * specially * specifies * structure * structures * subordinates * substitution * succeed * successful * successfully * sudoers * sufficient * superiors * supported * synchronization * terminated * they're * through * traffic * transparent * unsigned * unsupported * version * absence * achieves * adamson * additional * address * against * appropriate * architecture * associated * async * attribute * authentication * authorized * auxiliary * available * begin * beginning * buffered * canonical * certificate * charray * check * class * compatibility * compilation * component * configurable * configuration * configure * conjunction * constraints * constructor * contained * containing * continued * control * convenience * correspond * credentials * cyrillic * database * definitions * deloldrdn * dereferencing * destroy * distinguish * documentation * emmanuel * enabled * entry * enumerated * everything * exhaustive * existence * existing * explicitly * extract * fallthru * fashion * february * finally * function * generically * groupname * happened * implementation * including * initialization * initializes * insensitive * instantiated * instantiation * integral * internal * iterate
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
/* Copyright 2004 IBM Corporation
|
|
* All rights reserved.
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
* Public License.
|
|
*/
|
|
/* ACKNOWLEDGEMENTS
|
|
* This work originally developed by Sang Seok Lim
|
|
* 2004/06/18 03:20:00 slim@OpenLDAP.org
|
|
*/
|
|
#ifndef _H_ASN_MODULE
|
|
#define _H_ASN_MODULE
|
|
|
|
typedef enum { BER, GSER } EncRulesType;
|
|
|
|
typedef enum AsnTypeId {
|
|
BASICTYPE_BOOLEAN = 0,
|
|
BASICTYPE_INTEGER,
|
|
BASICTYPE_BITSTRING,
|
|
BASICTYPE_OCTETSTRING,
|
|
BASICTYPE_NULL,
|
|
BASICTYPE_OID,
|
|
BASICTYPE_REAL,
|
|
BASICTYPE_ENUMERATED,
|
|
BASICTYPE_NUMERIC_STR,
|
|
BASICTYPE_PRINTABLE_STR,
|
|
BASICTYPE_UNIVERSAL_STR,
|
|
BASICTYPE_IA5_STR,
|
|
BASICTYPE_BMP_STR,
|
|
BASICTYPE_UTF8_STR,
|
|
BASICTYPE_UTCTIME,
|
|
BASICTYPE_GENERALIZEDTIME,
|
|
BASICTYPE_GRAPHIC_STR,
|
|
BASICTYPE_VISIBLE_STR,
|
|
BASICTYPE_GENERAL_STR,
|
|
BASICTYPE_OBJECTDESCRIPTOR,
|
|
BASICTYPE_VIDEOTEX_STR,
|
|
BASICTYPE_T61_STR,
|
|
BASICTYPE_OCTETCONTAINING,
|
|
BASICTYPE_BITCONTAINING,
|
|
BASICTYPE_RELATIVE_OID, /* 25 */
|
|
BASICTYPE_ANY,
|
|
/* Embedded Composite Types*/
|
|
COMPOSITE_ASN1_TYPE,
|
|
/* A New ASN.1 types including type reference */
|
|
RDNSequence,
|
|
RelativeDistinguishedName,
|
|
TelephoneNumber,
|
|
FacsimileTelephoneNumber__telephoneNumber,
|
|
DirectoryString,
|
|
/* Newly Defined ASN.1 Type, Manually registered */
|
|
ASN_COMP_CERTIFICATE,
|
|
/* ASN.1 Type End */
|
|
ASNTYPE_END
|
|
} AsnTypeId;
|
|
|
|
#endif
|