Discuss this help topic in SecureBlackbox Forum

TElPGPEnvelopingStream.AddSignature

TElPGPEnvelopingStream     See also     


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


Adds a signature to the message.

Declaration

[C#/Java]
    int AddSignature(TElPGPSignature signature);

[VB.NET]
    function AddSignature(Signature as TElPGPSignature) as integer

[Pascal]
    function AddSignature(Signature : TElPGPSignature) : integer;

[C++]
    int32_t AddSignature(TElPGPSignature &Signature);
    int32_t AddSignature(TElPGPSignature *Signature);

[PHP]
    integer AddSignature(TElPGPSignature $Signature)

Parameters

  • Signature - signature to be added.

Return value

    Index of the newly added signature.

Description

    Use this method to add new signature to the message before enveloping it. This method creates a new instance of TElPGPSignature, copies Signature to this new instance and then adds new instance.

See also:     ClearSignatures     RemoveSignature     Signatures     SignatureCount     UseOnePassSignatures    

Discuss this help topic in SecureBlackbox Forum