Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SaveKeyToStreamMS

TElX509Certificate     See also     


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


Saves the private key of the certificate to the stream in PRIVATEKEYBLOB format compatible with CryptoAPI.

Declaration

[C#]
    int SaveKeyToStreamMS(System.IO.Stream Stream);

[VB.NET]
    Function SaveKeyToStreamMS(ByVal Stream As System.IO.Stream) As Integer

[Pascal]
    procedure SaveKeyToStream(Stream: TStream);

[C++]
    int32_t SaveKeyToStreamMS(TStream &Stream);
    int32_t SaveKeyToStreamMS(TStream *Stream);

[PHP]
    integer SaveKeyToStreamMS(TStream $Stream)

[Java]
    int saveKeyToStreamMS(OutputStream Stream);
    int saveKeyToStreamMS(TElStream Stream);

Parameters

  • Stream - the TStream 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