Discuss this help topic in SecureBlackbox Forum

TElOCSPResponse.Load

TElOCSPResponse     See also     


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


Loads OCSP response data from memory buffer.

Declaration

[C#]
    void Load(byte[] Buffer, int StartIndex, int Size);

[VB.NET]
    Sub Load(ByVal Buffer As Byte(), ByVal StartIndex As Integer, ByVal Size As Integer)

[Pascal]
    procedure Load(Buffer : pointer; Size : integer);

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

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

[Java]
    void load(byte[] Buffer, int StartIndex, int Size);

Parameters

  • Buffer - buffer with data to be loaded
  • StartIndex - index of the first byte of the data to be loaded in the Buffer
  • Size - size of the Buffer

Description

    Use this method to load the OCSP response data from memory buffer.

See also:     Save    

Discuss this help topic in SecureBlackbox Forum