Uses of Class
org.xbill.DNS.RRSIGRecord
Packages that use RRSIGRecord
-
Uses of RRSIGRecord in org.xbill.DNS
Methods 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. key and privateKey must refer to the same underlying cryptographic key.static RRSIGRecordDNSSEC.sign(RRset rrset, DNSKEYRecord key, PrivateKey privkey, Instant inception, Instant expiration, String provider) Generate a DNSSEC signature. key and privateKey must refer to the same underlying cryptographic key.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.
DNSSEC.sign(RRset, DNSKEYRecord, PrivateKey, Instant, Instant)