Home | History | Annotate | Download | only in DNS

Lines Matching refs:digest

20 public static final int SHA1_DIGEST_ID = DSRecord.Digest.SHA1;
21 public static final int SHA256_DIGEST_ID = DSRecord.Digest.SHA1;
28 private byte [] digest;
41 * @param digestid The digest id code.
42 * @param digest A hash of the original key.
46 int digestid, byte [] digest)
52 this.digest = digest;
60 digest = in.readByteArray();
68 digest = st.getHex();
82 if (digest != null) {
84 sb.append(base16.toString(digest));
99 * Returns the key's Digest ID.
112 return digest;
128 if (digest != null)
129 out.writeByteArray(digest);