Uses of Class
org.xbill.DNS.RRSIGRecord
Packages that use RRSIGRecord
-
Uses of RRSIGRecord in org.xbill.DNS
Fields in org.xbill.DNS with type parameters of type RRSIGRecordMethods in org.xbill.DNS that return RRSIGRecordModifier and TypeMethodDescriptionstatic RRSIGRecordDNSSEC.sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey, Instant inception, Instant expiration) Generate a DNSSEC signature.static RRSIGRecordDNSSEC.sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey, Instant inception, Instant expiration, String provider) Generate a DNSSEC signature.static RRSIGRecordDNSSEC.sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey, Date inception, Date expiration) Deprecated.static RRSIGRecordDNSSEC.sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey, Date inception, Date expiration, String provider) Methods in org.xbill.DNS that return types with arguments of type RRSIGRecordMethods in org.xbill.DNS with parameters of type RRSIGRecordModifier and TypeMethodDescriptionvoidRRset.addRR(RRSIGRecord r) Adds a signature to this RRset.voidRRset.deleteRR(RRSIGRecord r) Deletes a signature from this RRsetstatic byte[]DNSSEC.digestRRset(RRSIGRecord rrsig, RRset rrset) Creates a byte array containing the concatenation of the fields of the SIG record and the RRsets to be signed/verified.static voidDNSSEC.verify(RRset rrset, RRSIGRecord rrsig, DNSKEYRecord key) Verify a DNSSEC signature.static voidDNSSEC.verify(RRset rrset, RRSIGRecord rrsig, DNSKEYRecord key, Instant date) Verify a DNSSEC signature.static voidDNSSEC.verify(RRset rrset, RRSIGRecord rrsig, DNSKEYRecord key, Date date) Deprecated. -
Uses of RRSIGRecord in org.xbill.DNS.dnssec
Methods in org.xbill.DNS.dnssec with parameters of type RRSIGRecordModifier and TypeMethodDescriptionprivate List<DNSKEYRecord> DnsSecVerifier.findKey(RRset dnskeyRrset, RRSIGRecord signature) Find the matching DNSKEY(s) to an RRSIG within a DNSKEY rrset.static voidValUtils.setCanonicalNsecOwner(SRRset set, RRSIGRecord sig) Set the owner name of NSEC RRsets to the canonical name, i.e.private JustifiedSecStatusDnsSecVerifier.verifySignature(SRRset rrset, RRSIGRecord sigrec, KeyEntry keyRrset, Instant date) Verify an RRset against a particular signature.
DNSSEC.sign(RRset, DNSKEYRecord, PrivateKey, Instant, Instant)