Uses of Class
org.bouncycastle.bcpg.SignatureSubpacket
-
Packages that use SignatureSubpacket Package Description org.bouncycastle.bcpg Low level classes for dealing with OpenPGP objects.org.bouncycastle.bcpg.sig Low level classes for dealing with OpenPGP signature attributes.org.bouncycastle.openpgp High level classes for dealing with OpenPGP objects. -
-
Uses of SignatureSubpacket in org.bouncycastle.bcpg
Methods in org.bouncycastle.bcpg that return SignatureSubpacket Modifier and Type Method Description SignatureSubpacket[]
SignaturePacket. getHashedSubPackets()
SignatureSubpacket[]
SignaturePacket. getUnhashedSubPackets()
SignatureSubpacket
SignatureSubpacketInputStream. readPacket()
Constructors in org.bouncycastle.bcpg with parameters of type SignatureSubpacket Constructor Description 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. -
Uses of SignatureSubpacket in org.bouncycastle.bcpg.sig
Subclasses of SignatureSubpacket in org.bouncycastle.bcpg.sig Modifier and Type Class Description class
EmbeddedSignature
Packet embedded signatureclass
Exportable
packet giving signature creation time.class
Features
class
IntendedRecipientFingerprint
packet giving the intended recipient fingerprint.class
IssuerFingerprint
packet giving the issuer key fingerprint.class
IssuerKeyID
packet giving the issuer key ID.class
KeyExpirationTime
packet giving time after creation at which the key expires.class
KeyFlags
Packet holding the key flag values.class
NotationData
Class provided a NotationData object according to RFC2440, Chapter 5.2.3.15.class
PreferredAlgorithms
packet giving signature creation time.class
PrimaryUserID
packet giving whether or not the signature is signed using the primary user ID for the key.class
Revocable
packet giving whether or not is revocable.class
RevocationKey
Represents revocation key OpenPGP signature sub packet.class
RevocationReason
Represents revocation reason OpenPGP signature sub packet.class
SignatureCreationTime
packet giving signature creation time.class
SignatureExpirationTime
packet giving signature expiration time.class
SignatureTarget
RFC 4880, Section 5.2.3.25 - Signature Target subpacket.class
SignerUserID
packet giving the User ID of the signer.class
TrustSignature
packet giving trust. -
Uses of SignatureSubpacket in org.bouncycastle.openpgp
Methods in org.bouncycastle.openpgp that return SignatureSubpacket Modifier and Type Method Description SignatureSubpacket
PGPSignatureSubpacketVector. getSubpacket(int type)
SignatureSubpacket[]
PGPSignatureSubpacketGenerator. getSubpackets(int type)
Return all signature subpackets of the passed in type currently in the generator.SignatureSubpacket[]
PGPSignatureSubpacketVector. getSubpackets(int type)
Return all signature subpackets of the passed in type.SignatureSubpacket[]
PGPSignatureSubpacketVector. toArray()
Return a copy of the subpackets in this vector.Methods in org.bouncycastle.openpgp with parameters of type SignatureSubpacket Modifier and Type Method Description void
PGPSignatureSubpacketGenerator. addCustomSubpacket(SignatureSubpacket subpacket)
Add a custom subpacket.boolean
PGPSignatureSubpacketGenerator. removePacket(SignatureSubpacket packet)
Remove a previously set packet from the generator.
-