Home | History | Annotate | Download | only in DNS

Lines Matching defs:alg

18 private static final String HMAC_MD5_STR = "HMAC-MD5.SIG-ALG.REG.INT.";
56 private Name name, alg;
63 if (alg.equals(HMAC_MD5)) {
66 } else if (alg.equals(HMAC_SHA1)) {
69 } else if (alg.equals(HMAC_SHA224)) {
72 } else if (alg.equals(HMAC_SHA256)) {
75 } else if (alg.equals(HMAC_SHA512)) {
78 } else if (alg.equals(HMAC_SHA384)) {
94 this.alg = algorithm;
128 this.alg = algorithm;
146 this.alg = HMAC_MD5;
148 this.alg = HMAC_SHA1;
150 this.alg = HMAC_SHA224;
152 this.alg = HMAC_SHA256;
154 this.alg = HMAC_SHA384;
156 this.alg = HMAC_SHA512;
178 * alg:name:secret, or alg/name/secret. If an algorithm is specified, it must
243 alg.toWireCanonical(out);
274 return (new TSIGRecord(name, DClass.ANY, 0, alg, timeSigned, fudge,
342 Record r = new TSIGRecord(name, DClass.ANY, 0, alg, timeSigned, fudge,
371 if (!tsig.getName().equals(name) || !tsig.getAlgorithm().equals(alg)) {
469 alg.length() +
557 !tsig.getAlgorithm().equals(key.alg))