public class PgpSignatory extends SignatorySupport
Constructor and Description |
---|
PgpSignatory(String name,
org.bouncycastle.openpgp.PGPSecretKey secretKey,
String password) |
Modifier and Type | Method and Description |
---|---|
org.bouncycastle.openpgp.PGPSignatureGenerator |
createSignatureGenerator() |
String |
getKeyId()
Returns the id of the key that will be used for signing.
|
String |
getName()
An identifying name for this signatory.
|
void |
sign(InputStream toSign,
OutputStream signatureDestination)
Exhausts
toSign , and writes the signature to signatureDestination . |
sign
public final String getName()
Signatory
An identifying name for this signatory.
The name must be constant for the life of the signatory and should uniquely identify it within a project.
public void sign(InputStream toSign, OutputStream signatureDestination)
toSign
, and writes the signature to signatureDestination
.
The caller is responsible for closing the streams, though the output WILL be flushed.toSign
- The source of the data to be signedsignatureDestination
- Where the signature will be written topublic String getKeyId()
Signatory
public org.bouncycastle.openpgp.PGPSignatureGenerator createSignatureGenerator()