Discuss this help topic in SecureBlackbox Forum

TElPKCS11ManagerCertificateObject.Subject

TElPKCS11ManagerCertificateObject     


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


Specifies the certificate's subject name.

Declaration

[C#]
    byte[] Subject;

[VB.NET]
    Property Subject As Byte()

[Pascal]
    property Subject: ByteArray;

[C++]
    void get_Subject(std::vector<uint8_t> &OutResult);
    void set_Subject(const std::vector<uint8_t> &Value);

[PHP]
    string get_Subject()
    void set_Subject(array of byte|string|NULL $Value)

[Java]
    byte[] getSubject();
    void setSubject(byte[] V);

Parameters

  • V -

Description

    Use this property to specify or retrieve the name of the certificate subject. The name is specified as data in DER-encoding.

Discuss this help topic in SecureBlackbox Forum