Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PGPContentVerifierBuilder.java « operator « openpgp « bouncycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0dc6f8479a786082cfbd4d318791bf4df01c249 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.openpgp.operator;

import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPPublicKey;

public interface PGPContentVerifierBuilder
{
    public PGPContentVerifier build(final PGPPublicKey publicKey)
        throws PGPException;
}