Asn1ID_T

Holds the ASN.1 ID of an object.

Service:NDS
Defined In:nwdsbuft.h and nwdsbuft.inc

Structure

C

  typedef struct 
  { 
     nuint32   length; 
     nuint8    data [MAX_ASN1_NAME]; 
  } Asn1ID_T;
  

Pascal

  Asn1ID_T = Record 
      length : nuint32; 
      data : Array[0..MAX_ASN1_NAME-1] Of nuint8 
   End;
  

Fields

length

Specifies the number of characters in the array.

data

Contains a BER encoded string which specifies the ASN.1 ID for the object class or attribute definition.

NDS 8 verifies that the ASN.1 is BER encoded. Previous versions of NDS do not verify the string.