Bouncy Castle Cryptography 1.33

org.bouncycastle.bcpg
Class SignatureSubpacket

java.lang.Object
  extended byorg.bouncycastle.bcpg.SignatureSubpacket
Direct Known Subclasses:
Exportable, IssuerKeyID, KeyExpirationTime, KeyFlags, PreferredAlgorithms, PrimaryUserID, Revocable, SignatureCreationTime, SignatureExpirationTime, SignerUserID, TrustSignature

public class SignatureSubpacket
extends java.lang.Object

Basic type for a PGP Signature sub-packet.


Field Summary
protected  byte[] data
           
 
Constructor Summary
protected SignatureSubpacket(int type, boolean critical, byte[] data)
           
 
Method Summary
 void encode(java.io.OutputStream out)
           
 byte[] getData()
          return the generic data making up the packet.
 int getType()
           
 boolean isCritical()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

data

protected byte[] data
Constructor Detail

SignatureSubpacket

protected SignatureSubpacket(int type,
                             boolean critical,
                             byte[] data)
Method Detail

getType

public int getType()

isCritical

public boolean isCritical()

getData

public byte[] getData()
return the generic data making up the packet.


encode

public void encode(java.io.OutputStream out)
            throws java.io.IOException
Throws:
java.io.IOException

Bouncy Castle Cryptography 1.33