1 package org.bouncycastle.openpgp.operator;
2 
3 import java.io.OutputStream;
4 
5 public interface PGPContentSigner
6 {
getOutputStream()7     public OutputStream getOutputStream();
8 
getSignature()9     byte[] getSignature();
10 
getDigest()11     byte[] getDigest();
12 
getType()13     int getType();
14 
getHashAlgorithm()15     int getHashAlgorithm();
16 
getKeyAlgorithm()17     int getKeyAlgorithm();
18 
getKeyID()19     long getKeyID();
20 }
21