Uses of Class
org.xbill.DNS.DNSKEYRecord
Packages that use DNSKEYRecord
-
Uses of DNSKEYRecord in org.xbill.DNS
Subclasses of DNSKEYRecord in org.xbill.DNSModifier and TypeClassDescriptionclassChild DNSKEY record as specified in RFC 8078.Methods in org.xbill.DNS with parameters of type DNSKEYRecordModifier and TypeMethodDescription(package private) static byte[]DNSSEC.generateDSDigest(DNSKEYRecord key, int digestid) Generate the digest value for a DS keystatic 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) 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.Constructors in org.xbill.DNS with parameters of type DNSKEYRecordModifierConstructorDescriptionCDSRecord(Name name, int dclass, long ttl, int digestid, DNSKEYRecord key) Creates a CDS Record from the given dataDSRecord(Name name, int dclass, long ttl, int digestid, DNSKEYRecord key) Creates a DS Record from the given data(package private)InvalidDnskeyException(DNSKEYRecord dnskey, String message, int edeCode) -
Uses of DNSKEYRecord in org.xbill.DNS.dnssec
Methods in org.xbill.DNS.dnssec that return types with arguments of type DNSKEYRecordModifier and TypeMethodDescriptionprivate List<DNSKEYRecord> DnsSecVerifier.findKey(RRset dnskeyRrset, RRSIGRecord signature) Find the matching DNSKEY(s) to an RRSIG within a DNSKEY rrset.Methods in org.xbill.DNS.dnssec with parameters of type DNSKEYRecordModifier and TypeMethodDescriptionprivate booleanValUtils.dsDigestMatchesDnskey(DSRecord ds, DNSKEYRecord dnskey) private booleanValUtils.isKeySizeSupported(DNSKEYRecord dnskey) Check if the key size for an algorithm is supported.DnsSecVerifier.verify(RRset rrset, DNSKEYRecord dnskey, Instant date) Verify an RRset against a single DNSKEY.
DNSSEC.sign(RRset, DNSKEYRecord, PrivateKey, Instant, Instant)