Home | History | Annotate | Download | only in DNS

Lines Matching refs:fingerprint

9  * SSH Fingerprint - stores the fingerprint of an SSH host key.
33 private byte [] fingerprint;
46 * @param fingerprint The public key's fingerprint.
50 byte [] fingerprint)
55 this.fingerprint = fingerprint;
62 fingerprint = in.readByteArray();
69 fingerprint = st.getHex(true);
79 sb.append(base16.toString(fingerprint));
95 /** Returns the fingerprint */
98 return fingerprint;
105 out.writeByteArray(fingerprint);