Discuss this help topic in SecureBlackbox Forum

TElAuthenticodeVerifier.GetSignatureInfo

TElAuthenticodeVerifier     See also     


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


Returns information about the signature by its index.

Declaration

[C#/Java]
    bool GetSignatureInfo(int Index, [out] ref string Description, [out] ref string URL, [out] ref DateTime TimeStamp);

[VB.NET]
    Function GetSignatureInfo(ByVal Index As Integer, ByRef Description As String, ByRef URL As string, ByRef TimeStamp As DateTime) As Boolean

[Pascal]
    function GetSignatureInfo(Index: Integer; out Description: WideString; out URL: string; out TimeStamp: TDateTime): Boolean;

[C++]
    bool GetSignatureInfo(int32_t Index, sb_u16string &Description, std::string &URL, int64_t &TimeStamp, TElClientTSPInfo &TrustedTimeStamp);
    bool GetSignatureInfo(int32_t Index, std::wstring &Description, std::string &URL, int64_t &TimeStamp, TElClientTSPInfo &TrustedTimeStamp);

[PHP]
    bool GetSignatureInfo(integer $Index, string &$Description, string &$URL, DateTime &$TimeStamp, TElClientTSPInfo &$TrustedTimeStamp)

Parameters

  • Index - index of the signature in the list.
  • Description - string that describes signature (optional)
  • URL - optional parameter, contains URL.
  • Timestamp - date/time when signature was created
  • TrustedTimeStamp - ...

Return value

     True on success,
     False otherwise.

Description

    Use this method when you want to get signature description by its index. Signatures are numerated from 0 to SignatureCount - 1.

See also:     VerifySignature     SignatureCount    

Discuss this help topic in SecureBlackbox Forum