Searched defs:tsig (Results 1 - 4 of 4) sorted by relevance

/external/smack/src/org/xbill/DNS/
H A DSimpleResolver.java33 private TSIG tsig; field in class:SimpleResolver
157 tsig = key;
162 return tsig;
195 verifyTSIG(Message query, Message response, byte [] b, TSIG tsig) { argument
196 if (tsig == null)
198 int error = tsig.verify(response, b, query.getTSIG());
241 if (tsig != null)
242 tsig.apply(query, null);
288 verifyTSIG(query, response, in, tsig);
331 ZoneTransferIn xfrin = ZoneTransferIn.newAXFR(qname, address, tsig);
[all...]
H A DTSIG.java366 TSIGRecord tsig = m.getTSIG();
368 if (tsig == null)
371 if (!tsig.getName().equals(name) || !tsig.getAlgorithm().equals(alg)) {
377 long then = tsig.getTimeSigned().getTime();
378 long fudge = tsig.getFudge();
385 if (old != null && tsig.getError() != Rcode.BADKEY &&
386 tsig.getError() != Rcode.BADSIG)
402 tsig.getName().toWireCanonical(out);
403 out.writeU16(tsig
489 StreamVerifier(TSIG tsig, TSIGRecord old) argument
[all...]
H A DZoneTransferIn.java58 private TSIG tsig; field in class:ZoneTransferIn
174 this.tsig = key;
369 if (tsig != null) {
370 tsig.apply(query, null);
371 verifier = new TSIG.StreamVerifier(tsig, query.getTSIG());
/external/mdnsresponder/mDNSCore/
H A DDNSDigest.c1331 AuthRecord tsig; local
1348 mDNS_SetupResourceRecord(&tsig, mDNSNULL, 0, kDNSType_TSIG, 0, kDNSRecordTypeKnownUnique, AuthRecordAny, mDNSNULL, mDNSNULL);
1351 AssignDomainName(&tsig.namestorage, &info->keyname);
1355 tsig.resrec.rrclass = kDNSQClass_ANY;
1360 tsig.resrec.rroriginalttl = 0;
1361 MD5_Update(&c, (mDNSu8 *)&tsig.resrec.rroriginalttl, sizeof(tsig.resrec.rroriginalttl));
1364 AssignDomainName(&tsig.resrec.rdata->u.name, &HMAC_MD5_AlgName);
1366 rdata = tsig.resrec.rdata->u.data + len;
1397 // finish the message & tsig va
[all...]

Completed in 104 milliseconds