Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SaveKeyToStream

TElX509Certificate     See also     


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


Saves the private key of the certificate to the stream object.

Declaration

[C#]
    void SaveKeyToStream(System.IO.Stream Stream);

[VB.NET]
    Sub SaveKeyToStream(ByVal Stream As System.IO.Stream)

[Pascal]
    procedure SaveKeyToStream(Stream: TStream);

[C++]
    void SaveKeyToStream(TStream &Stream);
    void SaveKeyToStream(TStream *Stream);

[PHP]
    void SaveKeyToStream(TStream $Stream)

[Java]
    void saveKeyToStream(TElStream Stream);
    void saveKeyToStream(OutputStream Stream);

Parameters

  • Stream - the TStream (in Pascal case) object to which the private key is saved

Description

    This method saves the private key to the provided stream.

Discuss this help topic in SecureBlackbox Forum