Home | History | Annotate | Download | only in DNS

Lines Matching defs:sig

9  * Creates SIG(0) transaction signatures.
18 * The default validity period for outgoing SIG(0) signed messages.
27 * Sign a message with SIG(0). The DNS key and private key must refer to the
32 * @param previous If this message is a response, the SIG(0) from the query
47 SIGRecord sig = DNSSEC.signMessage(message, previous, key, privkey,
50 message.addRecord(sig, Section.ADDITIONAL);
54 * Verify a message using SIG(0).
57 * necessary since SIG(0) signs the message in wire format, and we can't
60 * @param previous If this message is a response, the SIG(0) from the query
66 SIGRecord sig = null;
69 if (additional[i].getType() != Type.SIG)
73 sig = (SIGRecord) additional[i];
76 DNSSEC.verifyMessage(message, b, sig, previous, key);