Discuss this help topic in SecureBlackbox Forum

TElDNSResourceRecordSet.FindSignature

TElDNSResourceRecordSet     See also     


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


Looks for a signature RR.

Declaration

[C#]
    int FindSignature(string Criteria, TSBDNSResourceType CoveredType, int Start);
    int FindSignature(string Criteria, TSBDNSResourceType CoveredType, TElDNSPublicKeyRecord Key, int Start);

[VB.NET]
    Function FindSignature(ByVal Criteria As String, ByVal CoveredType As TSBDNSResourceType, ByVal Start As Integer) As Integer
    Function FindSignature(ByVal Criteria As String, ByVal CoveredType As TSBDNSResourceType, ByVal Key As TElDNSPublicKeyRecord, ByVal Start As Integer) As Integer

[Pascal]
    function FindSignature(const Criteria : string; CoveredType : TSBDNSResourceType; Start : Integer): Integer;
    function FindSignature(const Criteria : string; CoveredType : TSBDNSResourceType; Key : TElDNSPublicKeyRecord; Start : Integer): Integer;

[C++]
    int32_t FindSignature(const std::string &Criteria, TSBDNSResourceType CoveredType, int32_t Start);
    int32_t FindSignature(const std::string &Criteria, TSBDNSResourceType CoveredType, TElDNSPublicKeyRecord &Key, int32_t Start);
    int32_t FindSignature(const std::string &Criteria, TSBDNSResourceType CoveredType, TElDNSPublicKeyRecord *Key, int32_t Start);

[PHP]
    integer FindSignature(string $Criteria, integer $CoveredType, integer $Start)
    integer FindSignature(string $Criteria, integer $CoveredType, TElDNSPublicKeyRecord $Key, integer $Start)

[Java]
    int findSignature(String Criteria, TSBDNSResourceType CoveredType, TElDNSPublicKeyRecord Key, int Start);
    int findSignature(String Criteria, TSBDNSResourceType CoveredType, int Start);

Parameters

  • Criteria - specifies the lookup criteria
  • CoveredType - type of the RRset covered by the RRSIG record
  • Key - contains public key
  • Start - index of the item from which to start search

Values:

Return value

    Returns the index of the desired item in the list. If the item has not been found, returns -1.

Description

    Use this method to search for the RR that holds a signature (RRSIG).

See also:     Find     FindAny     FindKey     FindSelfSignedSignature     FindSignatureByUpperLevel    

Discuss this help topic in SecureBlackbox Forum