Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.LoadFromBufferPkiPath

TElCustomCertStorage     See also     


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


Use this method to load multiple certificates stored in PkiPath format.

Declaration

[C#]
    bool LoadFromBufferPkiPath(byte[] Buffer);

[VB.NET]
    Function LoadFromBufferPkiPath(ByVal Buffer As Byte()) As Boolean

[Pascal]
    function LoadFromBufferPkiPath(Buffer : pointer; Size : integer) : boolean;

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

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

[Java]
    boolean loadFromBufferPkiPath(byte[] Buffer);

Parameters

  • Buffer - buffer with data to be loaded.
  • Size - size of the buffer in bytes.

Return value

     True if certificates were successfully loaded.
     False otherwise.

Description

    Use this method to load certificates from buffer in PkiPath format. In a PKI path the certificate that has been issued by the trust anchor is at the first position, and the target certificate is at the last position.

See also:     LoadFromStreamPkiPath     SaveToBufferPkiPath     SaveToStreamPkiPath    

Discuss this help topic in SecureBlackbox Forum