Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SaveToStreamPEM

TElX509Certificate     See also     


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


Writes the certificate to the stream in PEM format.

Declaration

[C#]
    void SaveToStreamPEM(System.IO.Stream Stream, string PassPhrase);

[VB.NET]
    Sub SaveToStreamPEM(ByVal Stream As System.IO.Stream, ByVal PassPhrase As String)

[Pascal]
    procedure SaveToStreamPEM(Stream : TStream; PassPhrase : string);

[C++]
    void SaveToStreamPEM(TStream &Stream, const std::string &PassPhrase);
    void SaveToStreamPEM(TStream *Stream, const std::string &PassPhrase);

[PHP]
    void SaveToStreamPEM(TStream $Stream, string $PassPhrase)

[Java]
    void saveToStreamPEM(TElStream Stream, String PassPhrase);
    void saveToStreamPEM(OutputStream Stream, String PassPhrase);

Parameters

  • Stream - The stream to which the certificate is written.
  • PassPhrase - The pass phrase to encrypt the certificate. If certificate shouldn't be encrypted, set this parameter to empty string

Description

    Use this method to write the certificate to stream. The certificate is saved in PEM format.

See also:     LoadFromStreamPEM     SaveToStream    

Discuss this help topic in SecureBlackbox Forum