Package org.xbill.DNS

Class TLSARecord

java.lang.Object
org.xbill.DNS.Record
org.xbill.DNS.TLSARecord
All Implemented Interfaces:
Serializable, Cloneable, Comparable<Record>
Direct Known Subclasses:
SMIMEARecord

public class TLSARecord extends Record
Transport Layer Security Authentication
Author:
Brian Wellington
See Also:
  • Constructor Details

    • TLSARecord

      protected TLSARecord(Name name, int type, int dclass, long ttl, int certificateUsage, int selector, int matchingType, byte[] certificateAssociationData)
      Creates an TLSA Record from the given data
      Parameters:
      certificateUsage - The provided association that will be used to match the certificate presented in the TLS handshake.
      selector - The part of the TLS certificate presented by the server that will be matched against the association data.
      matchingType - How the certificate association is presented.
      certificateAssociationData - The "certificate association data" to be matched.
    • TLSARecord

      public TLSARecord(Name name, int dclass, long ttl, int certificateUsage, int selector, int matchingType, byte[] certificateAssociationData)
      Creates an TLSA Record from the given data
      Parameters:
      certificateUsage - The provided association that will be used to match the certificate presented in the TLS handshake.
      selector - The part of the TLS certificate presented by the server that will be matched against the association data.
      matchingType - How the certificate association is presented.
      certificateAssociationData - The "certificate association data" to be matched.
  • Method Details

    • rrFromWire

      protected void rrFromWire(DNSInput in) throws IOException
      Description copied from class: Record
      Converts the type-specific RR to wire format - must be overridden
      Specified by:
      rrFromWire in class Record
      Throws:
      IOException
    • rdataFromString

      protected void rdataFromString(Tokenizer st, Name origin) throws IOException
      Description copied from class: Record
      Converts the text format of an RR to the internal format - must be overriden
      Specified by:
      rdataFromString in class Record
      Throws:
      IOException
    • rrToString

      protected String rrToString()
      Converts rdata to a String
      Specified by:
      rrToString in class Record
    • rrToWire

      protected void rrToWire(DNSOutput out, Compression c, boolean canonical)
      Description copied from class: Record
      Converts the type-specific RR to wire format - must be overridden.
      Specified by:
      rrToWire in class Record
    • getCertificateUsage

      public int getCertificateUsage()
      Returns the certificate usage of the TLSA record
    • getSelector

      public int getSelector()
      Returns the selector of the TLSA record
    • getMatchingType

      public int getMatchingType()
      Returns the matching type of the TLSA record
    • getCertificateAssociationData

      public final byte[] getCertificateAssociationData()
      Returns the certificate associate data of this TLSA record