Discuss this help topic in SecureBlackbox Forum

TElX509CertificateEx.AltKeyID

TElX509CertificateEx     See also     


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


Contains custom Key ID to be assigned to the key material objects.

Declaration

[C#]
    byte[] AltKeyID;

[VB.NET]
    Property AltKeyID As Byte()

[Pascal]
    property AltKeyID : ByteArray;

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

[PHP]
    string get_AltKeyID()
    void set_AltKeyID(array of byte|string|NULL $Value)

[Java]
    byte[] getAltKeyID();
    void setAltKeyID(byte[] V);

Parameters

  • V -

Description

    Use this property to provide a custom Key ID which will be assigned to the key material objects.
    Note, that this property must be set before calling Generate method.
    Note, that use of this property makes sense only if the cryptographic provider supports it. At the moment, only TElPKCS11CryptoProvider supports AltKeyID.

See also:     Generate    

Discuss this help topic in SecureBlackbox Forum