HomeSort by relevance Sort by last modified time
    Searched refs:TSIG (Results 1 - 10 of 10) sorted by null

  /external/smack/src/org/xbill/DNS/
Resolver.java 58 * Specifies the TSIG key that messages will be signed with
61 void setTSIGKey(TSIG key);
ZoneTransferIn.java 58 private TSIG tsig; field in class:ZoneTransferIn
59 private TSIG.StreamVerifier verifier;
171 SocketAddress address, TSIG key)
174 this.tsig = key;
197 * @param key The TSIG key used to authenticate the transfer, or null.
202 newAXFR(Name zone, SocketAddress address, TSIG key) {
211 * @param key The TSIG key used to authenticate the transfer, or null.
216 newAXFR(Name zone, String host, int port, TSIG key)
228 * @param key The TSIG key used to authenticate the transfer, or null
    [all...]
TSIG.java 10 * TSIG records on messages, which provide transaction security.
16 public class TSIG {
86 * Creates a new TSIG key, which can be used to sign or verify a message.
92 TSIG(Name algorithm, Name name, byte [] key) {
100 * Creates a new TSIG key with the hmac-md5 algorithm, which can be used to
106 TSIG(Name name, byte [] key) {
111 * Creates a new TSIG object, which can be used to sign or verify a message.
118 TSIG(Name algorithm, String name, String key) {
121 throw new IllegalArgumentException("Invalid TSIG key string");
126 throw new IllegalArgumentException("Invalid TSIG key name")
366 TSIGRecord tsig = m.getTSIG(); local
510 TSIGRecord tsig = m.getTSIG(); local
    [all...]
SimpleResolver.java 11 * SimpleResolver handles TCP retries, transaction security (TSIG), and
14 * @see TSIG
33 private TSIG tsig; field in class:SimpleResolver
156 setTSIGKey(TSIG key) {
157 tsig = key;
160 TSIG
162 return tsig;
195 verifyTSIG(Message query, Message response, byte [] b, TSIG tsig) {
    [all...]
Type.java 175 public static final int TSIG = 250;
280 types.add(TSIG, "TSIG", new TSIGRecord());
349 case TSIG:
Message.java 27 private TSIG tsigkey;
112 if (rec.getType() == Type.TSIG)
263 * Returns the TSIG record from the ADDITIONAL section, if one is present.
265 * @see TSIG
275 if (rec.type != Type.TSIG)
281 * Was this message signed by a TSIG?
282 * @see TSIG
292 * If this message was signed by a TSIG, was the TSIG verified?
293 * @see TSIG
    [all...]
TSIGRecord.java 11 * resolver. TSIG records provide transaction security between the
14 * @see TSIG
39 * Creates a TSIG Record from the given data. This is normally called by
40 * the TSIG class
51 * @see TSIG
58 super(name, Type.TSIG, dclass, ttl);
93 throw st.exception("no text format defined for TSIG");
ExtendedResolver.java 331 setTSIGKey(TSIG key) {
  /external/smack/src/org/xbill/DNS/tests/
xfrin.java 21 TSIG key = null;
39 key = new TSIG(s.substring(0, index),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windns.h 677 DNS_TSIG_DATAW TSIG,Tsig;
710 DNS_TSIG_DATAA TSIG,Tsig;

Completed in 513 milliseconds