Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.IssuerUniqueID

TElX509Certificate     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This read-only property contains issuer unique identifier.

Declaration

[C#]
    byte[] IssuerUniqueID;

[VB.NET]
    Property IssuerUniqueID As Byte()

[Pascal]
    property IssuerUniqueID: TBitString;

[C++]
    void get_IssuerUniqueID(std::vector<uint8_t> &OutResult);

[PHP]
    string get_IssuerUniqueID()

[Java]
    byte[] getIssuerUniqueID();

Description

    This unique identifier can be used when it is necessary to distinguish issuers in case when X.500 name has been used for different objects.
    The following paragraph is taken from RFC 2459 (Housley, et. al.), part 4.1.2.8 Unique Identifiers:

    «These fields may only appear if the version is 2 or 3 (see sec. 4.1.2.1). The subject and issuer unique identifiers are present in the certificate to handle the possibility of reuse of subject and/or issuer names over time. This profile recommends that names not be reused for different entities and that Internet certificates not make use of unique identifiers. CAs conforming to this profile SHOULD NOT generate certificates with unique identifiers. Applications conforming to this profile SHOULD be capable of parsing unique identifiers and making comparisons.»

See also:     SubjectUniqueID    

Discuss this help topic in SecureBlackbox Forum