Contains binary data that is encoded with simplified BER (Basic Encoding Rules).
typedef struct berval {
unsigned long bv_len;
char *bv_val;
};
Specifies the length of the data.
Points to the encoded data.
The ber_init function converts a BerElement structure to a berval structure, and the ber_flatten function converts a berval structure to a BerElement structure.