package org.spongycastle.openpgp.operator; import org.spongycastle.openpgp.PGPException; import org.spongycastle.openpgp.PGPPublicKey; public interface PGPContentVerifierBuilder { public PGPContentVerifier build(final PGPPublicKey publicKey) throws PGPException; }