Home | History | Annotate | Download | only in DNS

Lines Matching full:signature

25 protected byte [] signature;
33 byte [] signature)
48 this.signature = signature;
61 signature = in.readByteArray();
80 signature = st.getBase64();
106 sb.append(base64.formatString(signature, 64, "\t",
110 sb.append(base64.toString(signature));
115 /** Returns the RRset type covered by this signature */
122 * Returns the cryptographic algorithm of the key that generated the signature
145 /** Returns the time at which the signature expires */
151 /** Returns the time at which this signature was generated */
169 /** Returns the binary data representing the signature */
172 return signature;
176 setSignature(byte [] signature) {
177 this.signature = signature;
190 out.writeByteArray(signature);