| java.lang.Object org.xbill.DNS.security.DNSSECVerifier
DNSSECVerifier | public class DNSSECVerifier implements Verifier(Code) | | A class that verifies DNS data using digital signatures contained in DNSSEC
SIG records. DNSSECVerifier stores a set of trusted keys. Each specific
verification references a cache where additional secure keys may be found.
See Also: Verifier See Also: DNSSEC author: Brian Wellington |
DNSSECVerifier | public DNSSECVerifier()(Code) | | Creates a new DNSSECVerifier
|
addTrustedKey | public synchronized void addTrustedKey(DNSKEYRecord key)(Code) | | Adds the specified key to the set of trusted keys
|
addTrustedKey | public void addTrustedKey(Name name, int alg, PublicKey key)(Code) | | Adds the specified key to the set of trusted keys
|
verify | public int verify(RRset set, Cache cache)(Code) | | Attempts to verify an RRset. This does not modify the set.
Parameters: set - The RRset to verify Parameters: cache - The Cache where obtained secure keys are found (may be null) The new security status of the set See Also: RRset |
|
|