C# Class Org.BouncyCastle.Bcpg.SignatureSubpacket

Basic type for a PGP Signature sub-packet.
Mostrar archivo Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
Encode ( Stream os ) : void
GetData ( ) : byte[]

Return the generic data making up the packet.

IsCritical ( ) : bool

Protected Methods

Method Description
SignatureSubpacket ( SignatureSubpacketTag type, bool critical, byte data ) : System.IO

Method Details

Encode() public method

public Encode ( Stream os ) : void
os System.IO.Stream
return void

GetData() public method

Return the generic data making up the packet.
public GetData ( ) : byte[]
return byte[]

IsCritical() public method

public IsCritical ( ) : bool
return bool

SignatureSubpacket() protected method

protected SignatureSubpacket ( SignatureSubpacketTag type, bool critical, byte data ) : System.IO
type SignatureSubpacketTag
critical bool
data byte
return System.IO