Discuss this help topic in SecureBlackbox Forum

TElPGPSignature.SaveOnePassToStream

TElPGPSignature     See also     


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


Writes the one-pass signature to the stream.

Declaration

[C#]
    void SaveOnePassToStream(System.IO.Stream Stream, bool Nested);

[VB.NET]
    Sub SaveOnePassToStream(ByVal Stream As System.IO.Stream, ByVal Nested As Boolean)

[Pascal]
    procedure SaveOnePassToStream(Stream : TStream; Nested : boolean = false);

[C++]
    void SaveOnePassToStream(TStream &Stream, bool Nested);
    void SaveOnePassToStream(TStream *Stream, bool Nested);

[PHP]
    void SaveOnePassToStream(TStream $Stream, bool $Nested)

[Java]
    void saveOnePassToStream(TElStream Stream, boolean Nested);

Parameters

  • Stream - The stream to which the one-pass signature is written.
  • Nested - ...

Description

    Use this method to write the one-pass signature to stream. One-pass signature contains some information about the signature such as hash algorithm, key fingerprint, etc. And when the signature is placed after signed data it is possible to start hashing at once after one-pass, so file can be processed by one pass.

See also:     LoadFromStream     SaveToStream    

Discuss this help topic in SecureBlackbox Forum