Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.LoadFromStreamSPC

TElX509Certificate     See also     


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


Reads the certificate from the stream.

Declaration

[C#]
    int LoadFromStreamSPC(System.IO.Stream Stream, int Count);

[VB.NET]
    Function LoadFromStreamSPC(ByVal Stream As System.IO.Stream, ByVal Count As Integer) As Integer

[Pascal]
    function LoadFromStreamSPC(Stream : TStream; Count : integer = 0) : integer;

[C++]
    int32_t LoadFromStreamSPC(TStream &Stream, int32_t Count);
    int32_t LoadFromStreamSPC(TStream *Stream, int32_t Count);

[PHP]
    integer LoadFromStreamSPC(TStream $Stream, integer $Count)

[Java]
    int loadFromStreamSPC(TElStream Stream, int Count);
    int loadFromStreamSPC(InputStream Stream, int Count);

Parameters

  • Stream - The stream from which the certificate is loaded.
  • Count - Optional parameter that specified the number of bytes to be read. If this parameter is zero, the whole stream (from current position till the end) is read.

Return value

    0 on success.
    SPC error code otherwise.

Description

    Use this method to read the certificate from the stream. The read operation is started at current stream position and finished when the end of the stream is reached or when the number of bytes specified in Count parameter is read. The certificate must have been saved in SPC (PKCS#7) format.

See also:     LoadFromStreamAuto     LoadKeyFromStreamPVK     LoadFromBufferSpc     LoadFromStream     SaveToStream    

Discuss this help topic in SecureBlackbox Forum