Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.SaveToStreamPkiPath

TElCustomCertStorage     See also     


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


Saves the certificates contained in the storage to the stream in PkiPath format.

Declaration

[C#]
    bool SaveToStreamPkiPath(System.IO.Stream Stream);

[VB.NET]
    Function SaveToStreamPkiPath(ByVal Stream As System.IO.Stream) As Boolean

[Pascal]
    function SaveToStreamPkiPath(Stream : TStream) : boolean;

[C++]
    bool SaveToStreamPkiPath(TStream &Stream);
    bool SaveToStreamPkiPath(TStream *Stream);

[PHP]
    bool SaveToStreamPkiPath(TStream $Stream)

[Java]
    boolean saveToStreamPkiPath(OutputStream Stream);
    boolean saveToStreamPkiPath(TElStream Stream);

Parameters

  • Stream - the stream to which the certificates are written.

Return value

     True if certificates were successfully saved.
     False otherwise.

Description

    Use this method in derived classes to save currently stored certificates 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:     LoadFromBufferPkiPath     LoadFromStreamPkiPath     SaveToBufferPkiPath    

Discuss this help topic in SecureBlackbox Forum