1 package org.bouncycastle.openpgp.operator;
2 
3 import org.bouncycastle.openpgp.PGPException;
4 import org.bouncycastle.openpgp.PGPPrivateKey;
5 
6 public interface PGPContentSignerBuilder
7 {
build(final int signatureType, final PGPPrivateKey privateKey)8     public PGPContentSigner build(final int signatureType, final PGPPrivateKey privateKey)
9         throws PGPException;
10 }
11