
org.xbill.DNS.Verifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
// Copyright (c) 1999-2004 Brian Wellington ([email protected])
package org.xbill.DNS;
/**
* An interface to a DNSSEC Verifier. This is used to verify the validity
* of data received by dnsjava. The specific implementation of the verifier
* is expected to store trusted keys in some way. The Verifier will use
* these trusted keys as well as secure cached keys to verify data.
* @see org.xbill.DNS.security.DNSSECVerifier
*
* @author Brian Wellington
*/
public interface Verifier {
/**
* Verifies this RRset, using secure keys found in this Cache if necessary.
* @see RRset
* @see Cache
*/
int verify(RRset set, Cache cache);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy