Discuss this help topic in SecureBlackbox Forum

TElX509CertificateEx.SetCAPrivateKey

TElX509CertificateEx     See also     


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


Use this method to set certificate authority (CA) private key.

Declaration

[C#]
    void SetCAPrivateKey(byte[] Buffer);

[VB.NET]
    Sub SetCAPrivateKey(ByVal Buffer As Byte())

[Pascal]
    procedure SetCAPrivateKey(Buffer : pointer; Size : LongInt);

[C++]
    void SetCAPrivateKey(void * Buffer, int32_t Size);

[PHP]
    void SetCAPrivateKey(TSBPointer|array of byte|string|NULL $Buffer, integer $Size)

[Java]
    void setCAPrivateKey(byte[] Buffer);

Parameters

  • Buffer - the buffer from which the certificate is loaded. The data in the buffer must be in DER format.
  • Size - the size of the buffer from which the data is loaded.

Description

    This method sets certificate authority (CA) private key. This operation is needed to specify the data about the issuer which will be used for creation of new certificate.

See also:     Generate     SetCACertificate    

Discuss this help topic in SecureBlackbox Forum