Package org.xbill.DNS

Class TKEYRecord

java.lang.Object
org.xbill.DNS.Record
org.xbill.DNS.TKEYRecord
All Implemented Interfaces:
Serializable, Cloneable, Comparable<Record>

public class TKEYRecord extends Record
Transaction Key - used to compute and/or securely transport a shared secret to be used with TSIG.
Author:
Brian Wellington
See Also:
  • Field Details

    • SERVERASSIGNED

      public static final int SERVERASSIGNED
      The key is assigned by the server (unimplemented)
      See Also:
    • DIFFIEHELLMAN

      public static final int DIFFIEHELLMAN
      The key is computed using a Diffie-Hellman key exchange
      See Also:
    • GSSAPI

      public static final int GSSAPI
      The key is computed using GSS_API (unimplemented)
      See Also:
    • RESOLVERASSIGNED

      public static final int RESOLVERASSIGNED
      The key is assigned by the resolver (unimplemented)
      See Also:
    • DELETE

      public static final int DELETE
      The key should be deleted
      See Also:
  • Constructor Details

    • TKEYRecord

      public TKEYRecord(Name name, int dclass, long ttl, Name alg, Instant timeInception, Instant timeExpire, int mode, int error, byte[] key, byte[] other)
      Creates a TKEY Record from the given data.
      Parameters:
      alg - The shared key's algorithm
      timeInception - The beginning of the validity period of the shared secret or keying material
      timeExpire - The end of the validity period of the shared secret or keying material
      mode - The mode of key agreement
      error - The extended error field. Should be 0 in queries
      key - The shared secret
      other - The other data field. Currently unused responses.
    • TKEYRecord

      @Deprecated public TKEYRecord(Name name, int dclass, long ttl, Name alg, Date timeInception, Date timeExpire, int mode, int error, byte[] key, byte[] other)
      Creates a TKEY Record from the given data.
      Parameters:
      alg - The shared key's algorithm
      timeInception - The beginning of the validity period of the shared secret or keying material
      timeExpire - The end of the validity period of the shared secret or keying material
      mode - The mode of key agreement
      error - The extended error field. Should be 0 in queries
      key - The shared secret
      other - The other data field. Currently unused responses.
  • 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
    • modeString

      protected String modeString()
    • rrToString

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

      public Name getAlgorithm()
      Returns the shared key's algorithm
    • getTimeInception

      public Instant getTimeInception()
      Returns the beginning of the validity period of the shared secret or keying material
    • getTimeExpire

      public Instant getTimeExpire()
      Returns the end of the validity period of the shared secret or keying material
    • getMode

      public int getMode()
      Returns the key agreement mode
    • getError

      public int getError()
      Returns the extended error
    • getKey

      public byte[] getKey()
      Returns the shared secret or keying material
    • getOther

      public byte[] getOther()
      Returns the other data
    • 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