Differences From Artifact [6d36bcbbbd]:
- File src/OFASN1Value.h — part of check-in [6410235ae3] at 2018-10-13 22:43:49 on branch trunk — Add more ASN.1 string types (IA5 and octet string) (user: js, size: 3426) [annotate] [blame] [check-ins using]
To Artifact [c97d7a86f0]:
- File src/OFASN1Value.h — part of check-in [0d746a1aac] at 2018-10-13 23:51:15 on branch trunk — Add ASN.1 bit string type (user: js, size: 3484) [annotate] [blame] [check-ins using]
| ︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | + + |
* @brief ASN.1 tag number.
*/
typedef enum {
/*! Boolean */
OF_ASN1_TAG_NUMBER_BOOLEAN = 0x01,
/*! Integer */
OF_ASN1_TAG_NUMBER_INTEGER = 0x02,
/*! Bit string */
OF_ASN1_TAG_NUMBER_BIT_STRING = 0x03,
/*! Octet string */
OF_ASN1_TAG_NUMBER_OCTET_STRING = 0x04,
/*! Null */
OF_ASN1_TAG_NUMBER_NULL = 0x05,
/*! UTF-8 string */
OF_ASN1_TAG_NUMBER_UTF8_STRING = 0x0C,
/*! Sequence */
|
| ︙ |