berval

Contains binary data that is encoded with simplified BER (Basic Encoding Rules).

Structure

  typedef struct berval {
     unsigned long   bv_len;
     char           *bv_val;
  };
  

Fields

bv_len

Specifies the length of the data.

bv_val

Points to the encoded data.

Remarks

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.