Discuss this help topic in SecureBlackbox Forum

TElMemoryCertStorage.Add

TElMemoryCertStorage     See also     


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


Adds the certificate to storage

Declaration

[C#]
    void Add(TElX509Certificate X509Certificate, bool CopyPrivateKey);

[VB.NET]
    Sub Add(ByVal X509Certificate As TElX509Certificate, ByVal CopyPrivateKey As Boolean)

[Pascal]
    procedure Add(Certificate : TElX509Certificate; CopyPrivateKey: boolean = true);

[C++]
    void Add(TElX509Certificate &X509Certificate, bool CopyPrivateKey);
    void Add(TElX509Certificate *X509Certificate, bool CopyPrivateKey);

[PHP]
    void Add(TElX509Certificate $X509Certificate, bool $CopyPrivateKey)

[Java]
    void add(TElX509Certificate X509Certificate, boolean CopyPrivateKey);

Parameters

  • X509Certificate - Certificate object, initialized by LoadFromBuffer method
  • CopyPrivateKey - True - private key will be copied when certificate is added.
    False - private key will not be copied.

Description

    Use this method to add certificate to certificate storage.

See also:     Remove    

Discuss this help topic in SecureBlackbox Forum