Package | Description |
---|---|
org.bouncycastle.bcpg |
Low level classes for dealing with OpenPGP objects.
|
Modifier and Type | Method and Description |
---|---|
MPInteger[] |
SignaturePacket.getSignature()
return the signature as a set of integers - note this is normalised to be the
ASN.1 encoding of what appears in the signature packet.
|
Constructor and Description |
---|
SignaturePacket(int version,
int signatureType,
long keyID,
int keyAlgorithm,
int hashAlgorithm,
long creationTime,
byte[] fingerPrint,
MPInteger[] signature)
Generate a version 2/3 signature packet.
|
SignaturePacket(int version,
int signatureType,
long keyID,
int keyAlgorithm,
int hashAlgorithm,
SignatureSubpacket[] hashedData,
SignatureSubpacket[] unhashedData,
byte[] fingerPrint,
MPInteger[] signature) |
SignaturePacket(int signatureType,
long keyID,
int keyAlgorithm,
int hashAlgorithm,
SignatureSubpacket[] hashedData,
SignatureSubpacket[] unhashedData,
byte[] fingerPrint,
MPInteger[] signature)
Generate a version 4 signature packet.
|