Discuss this help topic in SecureBlackbox Forum

TElPGPCustomPublicKey.DirectVerify

TElPGPCustomPublicKey     See also     


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


Verifies a direct-key signature.

Declaration

[C#]
    bool DirectVerify(TElPGPCustomPublicKey Key, TElPGPSignature Signature);

[VB.NET]
    Function DirectVerify(ByVal Key As TElPGPCustomPublicKey, ByVal Signature As TElPGPSignature) As Boolean

[Pascal]
    function DirectVerify(Key : TElPGPCustomPublicKey; Signature : TElPGPSignature) : boolean;

[C++]
    bool DirectVerify(TElPGPCustomPublicKey &Key, TElPGPSignature &Signature);
    bool DirectVerify(TElPGPCustomPublicKey *Key, TElPGPSignature *Signature);

[PHP]
    bool DirectVerify(TElPGPCustomPublicKey $Key, TElPGPSignature $Signature)

[Java]
    boolean directVerify(TElPGPCustomPublicKey Key, TElPGPSignature Signature);

Parameters

  • Key - key to be verified
  • Signature - signature

Return value

     True on success,
     False otherwise

Description

    Use this method to verify a direct-key signature.

See also:     DirectRevocationVerify     RevocationVerify     Verify    

Discuss this help topic in SecureBlackbox Forum