Discuss this help topic in SecureBlackbox Forum

TElCertificateRevocationListEx.SaveToStream

TElCertificateRevocationListEx     See also     


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


Saves the CRL to stream.

Declaration

[C#]
    int SaveToStream(System.IO.Stream Stream, TElX509Certificate Certificate);

[VB.NET]
    Function SaveToStream(ByVal Stream As System.IO.Stream, ByVal Certificate As TElX509Certificate) As Integer

[Pascal]
    function SaveToStream(Stream : TStream; Certificate : TElX509Certificate) : integer;

[C++]
    int32_t SaveToStream(TStream &Stream, TElX509Certificate &Certificate);
    int32_t SaveToStream(TStream *Stream, TElX509Certificate *Certificate);

[PHP]
    integer SaveToStream(TStream $Stream, TElX509Certificate $Certificate)

[Java]
    int saveToStream(TElStream Stream, TElX509Certificate Certificate);
    int saveToStream(OutputStream Stream, TElX509Certificate Certificate);

Parameters

  • Stream - the stream to which the certificate is written.
  • Certificate - certificate to sign the CRL.

Return value

    0 if certificates were successfully saved.     SB_CRL error code otherwise.

CRL Error codes

Description

    Use this method to write the CRL to the stream. The CRL is saved in DER format.

See also:     SaveToBuffer     SaveToStreamPEM    

Discuss this help topic in SecureBlackbox Forum