Discuss this help topic in SecureBlackbox Forum

TElPGPCustomSecretKey.PrepareForSigning

TElPGPCustomSecretKey     See also     


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


Starts asynchronous "prepare for signing" operation.

Declaration

[C#]
    void PrepareForSigning(bool MultiUse);

[VB.NET]
    Sub PrepareForSigning(ByVal MultiUse As Boolean)

[Pascal]
    procedure PrepareForSigning(MultiUse : boolean = false); virtual;

[C++]
    void PrepareForSigning(bool MultiUse);

[PHP]
    void PrepareForSigning(bool $MultiUse)

[Java]
    void prepareForSigning(boolean MultiUse);

Parameters

  • MultiUse - specifies if the prepared key should be reused for consequent signing operations.If MultiUse is False, the key should be prepared explicitly before each signing operation.If MultiUse is True, the prepared key can be reused for several consequent operations.
    Note, that use of the same key for a large number of cryptooperations is not recommended due to possible security leak.

Description

    Use this method to start asynchronous signature pre-computation operation. This method performs time-consuming parts of signing operation asynchronously.

See also:     CancelPreparation    

Discuss this help topic in SecureBlackbox Forum