28#include <freeradius-devel/build.h>
29#include <freeradius-devel/util/dict.h>
30#include <freeradius-devel/util/value.h>
63#define FR_DER_TAG_VALUE_MAX (0x1f)
78#define DER_MAX_STR 16384
80#define DER_UTC_TIME_LEN 13
81#define DER_GENERALIZED_TIME_LEN_MIN 15
82#define DER_GENERALIZED_TIME_PRECISION_MAX 4
84#define DER_TAG_CLASS_MASK 0xc0
85#define DER_TAG_CONSTRUCTED_MASK 0x20
86#define DER_TAG_NUM_MASK 0x1f
88#define DER_TAG_CONTINUATION 0x1f
90#define DER_LEN_MULTI_BYTE 0x80
92#define DER_BOOLEAN_FALSE 0x00
93#define DER_BOOLEAN_TRUE 0xff
124#define fr_der_flag_option(_da) (fr_der_attr_flags(_da)->option)
125#define fr_der_flag_optional(_da) (fr_der_attr_flags(_da)->optional)
126#define fr_der_flag_class(_da) (fr_der_attr_flags(_da)->class)
127#define fr_der_flag_der_type(_da) (fr_der_attr_flags(_da)->der_type)
128#define fr_der_flag_sequence_of(_da) (fr_der_attr_flags(_da)->sequence_of)
129#define fr_der_flag_is_sequence_of(_da) (fr_der_attr_flags(_da)->is_sequence_of)
130#define fr_der_flag_set_of(_da) (fr_der_attr_flags(_da)->set_of)
131#define fr_der_flag_is_set_of(_da) (fr_der_attr_flags(_da)->is_set_of)
132#define fr_der_flag_max(_da) (fr_der_attr_flags(_da)->max)
133#define fr_der_flag_is_oid_and_value(_da) (fr_der_attr_flags(_da)->is_oid_and_value)
134#define fr_der_flag_is_extensions(_da) (fr_der_attr_flags(_da)->is_extensions)
135#define fr_der_flag_has_default_value(_da) ((fr_der_attr_flags(_da)->has_default_value) != NULL);
136#define fr_der_flag_is_oid_leaf(_da) (fr_der_attr_flags(_da)->is_oid_leaf)
137#define fr_der_flag_is_choice(_da) (fr_der_attr_flags(_da)->is_choice)
fr_der_tag_t
Enumeration describing the data types in a DER encoded structure.
@ FR_DER_TAG_IA5_STRING
String of IA5 (7bit) chars.
@ FR_DER_TAG_SEQUENCE
A sequence of DER encoded data (a structure).
@ FR_DER_TAG_SET
A set of DER encoded data (a structure).
@ FR_DER_TAG_BMP_STRING
String of BMP chars.
@ FR_DER_TAG_INTEGER
Arbitrary width signed integer.
@ FR_DER_TAG_BOOLEAN
Boolean true/false.
@ FR_DER_TAG_CHOICE
A choice of types. Techically not a DER tag, but used to represent a choice.
@ FR_DER_TAG_UTF8_STRING
String of UTF8 chars.
@ FR_DER_TAG_UTC_TIME
A time in UTC "YYMMDDhhmmssZ" format.
@ FR_DER_TAG_GENERALIZED_TIME
A time in "YYYYMMDDHHMMSS[.fff]Z" format.
@ FR_DER_TAG_INVALID
Invalid tag.
@ FR_DER_TAG_NULL
An empty value.
@ FR_DER_TAG_OCTETSTRING
String of octets (length field specifies bytes).
@ FR_DER_TAG_VISIBLE_STRING
String of visible chars.
@ FR_DER_TAG_BITSTRING
String of bits (length field specifies bits).
@ FR_DER_TAG_T61_STRING
String of T61 (8bit) chars.
@ FR_DER_TAG_ENUMERATED
An enumerated value.
@ FR_DER_TAG_UNIVERSAL_STRING
String of universal chars.
@ FR_DER_TAG_PRINTABLE_STRING
String of printable chars.
@ FR_DER_TAG_GENERAL_STRING
String of general chars.
@ FR_DER_TAG_OID
Reference to an OID based attribute.
bool fr_der_tags_compatible(fr_der_tag_t tag1, fr_der_tag_t tag2)
bool optional
optional, we MUST already have set 'option'
bool is_extensions
a list of X.509 extensions
void fr_der_global_free(void)
fr_der_tag_t der_type
the DER type, which is different from the FreeRADIUS type
bool is_option
has an option defined
bool is_sequence_of
sequence_of has been defined
bool is_set_of
set_of has been defined
int fr_der_global_init(void)
uint32_t restrictions
for choice of options and tags - no dups allowed
HIDDEN fr_dict_t const * dict_der
bool fr_type_to_der_tag_valid(fr_type_t type, fr_der_tag_t tag)
fr_der_tag_t fr_type_to_der_tag_default(fr_type_t type)
char const * fr_der_tag_to_str(fr_der_tag_t tag)
@ FR_DER_TAG_CONSTRUCTED
This is a sequence or set, it contains children.
@ FR_DER_TAG_PRIMITIVE
This is a leaf value, it contains no children.
bool is_oid_and_value
is OID+value
static fr_der_attr_flags_t const * fr_der_attr_flags(fr_dict_attr_t const *da)
bool is_choice
DER name "choice".
uint8_t option
an "attribute number" encoded in the tag field.
bool has_default_value
a default value exists
uint64_t max
maximum count of items in a sequence, set, or string.
@ FR_DER_CLASS_APPLICATION
@ FR_DICT_ATTR_EXT_PROTOCOL_SPECIFIC
Protocol specific extensions.
static void * fr_dict_attr_ext(fr_dict_attr_t const *da, fr_dict_attr_ext_t ext)
fr_aka_sim_id_type_t type