Uses of Class
org.xbill.DNS.TSIGRecord
Packages that use TSIGRecord
-
Uses of TSIGRecord in org.xbill.DNS
Methods in org.xbill.DNS that return TSIGRecordModifier and TypeMethodDescriptionTSIG.generate(Message m, byte[] b, int error, TSIGRecord old) Generates a TSIG record with a specific error for a message that has been rendered.TSIG.generate(Message m, byte[] b, int error, TSIGRecord old, boolean fullSignature) Generates a TSIG record with a specific error for a message that has been rendered.Message.getTSIG()Returns the TSIG record from the ADDITIONAL section, if one is present.Methods in org.xbill.DNS with parameters of type TSIGRecordModifier and TypeMethodDescriptionvoidTSIG.apply(Message m, int error, TSIGRecord old) Generates a TSIG record with a specific error for a message and adds it to the message.voidTSIG.apply(Message m, int error, TSIGRecord old, boolean fullSignature) Generates a TSIG record with a specific error for a message and adds it to the message.voidTSIG.apply(Message m, TSIGRecord old) Generates a TSIG record for a message and adds it to the messagevoidTSIG.apply(Message m, TSIGRecord old, boolean fullSignature) Generates a TSIG record with a specific error for a message and adds it to the message.voidTSIG.applyStream(Message m, TSIGRecord old, boolean fullSignature) Deprecated.TSIG.generate(Message m, byte[] b, int error, TSIGRecord old) Generates a TSIG record with a specific error for a message that has been rendered.TSIG.generate(Message m, byte[] b, int error, TSIGRecord old, boolean fullSignature) Generates a TSIG record with a specific error for a message that has been rendered.voidMessage.setTSIG(TSIG key, int error, TSIGRecord querytsig) Sets the TSIG key and other necessary information to sign a message.byteTSIG.verify(Message m, byte[] b, int length, TSIGRecord old) Deprecated.intTSIG.verify(Message m, byte[] messageBytes, TSIGRecord requestTSIG) Verifies a TSIG record on an incoming message.intTSIG.verify(Message m, byte[] messageBytes, TSIGRecord requestTSIG, boolean fullSignature) Verifies a TSIG record on an incoming message.Constructors in org.xbill.DNS with parameters of type TSIGRecordModifierConstructorDescriptionStreamGenerator(TSIG key, TSIGRecord queryTsig) Creates an instance to sign multiple message for use in a stream.StreamVerifier(TSIG tsig, TSIGRecord queryTsig) Creates an object to verify a multiple message response
TSIG.apply(Message, TSIGRecord, boolean)