C# Class NBitcoin.BouncyCastle.Asn1.DerOutputStream

Inheritance: NBitcoin.BouncyCastle.Utilities.IO.FilterStream
Show file Open project: Nethereum/Nethereum Class Usage Examples

Public Methods

Method Description
DerOutputStream ( Stream os ) : System
WriteEncoded ( int tag, byte bytes ) : void
WriteEncoded ( int tag, byte first, byte bytes ) : void
WriteEncoded ( int tag, byte bytes, int offset, int length ) : void
WriteEncoded ( int flags, int tagNo, byte bytes ) : void
WriteObject ( Asn1Encodable obj ) : void
WriteObject ( Asn1Object obj ) : void
WriteTag ( int flags, int tagNo ) : void

Protected Methods

Method Description
WriteNull ( ) : void

Private Methods

Method Description
WriteLength ( int length ) : void
WriteObject ( object obj ) : void

Method Details

DerOutputStream() public method

public DerOutputStream ( Stream os ) : System
os Stream
return System

WriteEncoded() public method

public WriteEncoded ( int tag, byte bytes ) : void
tag int
bytes byte
return void

WriteEncoded() public method

public WriteEncoded ( int tag, byte first, byte bytes ) : void
tag int
first byte
bytes byte
return void

WriteEncoded() public method

public WriteEncoded ( int tag, byte bytes, int offset, int length ) : void
tag int
bytes byte
offset int
length int
return void

WriteEncoded() public method

public WriteEncoded ( int flags, int tagNo, byte bytes ) : void
flags int
tagNo int
bytes byte
return void

WriteNull() protected method

protected WriteNull ( ) : void
return void

WriteObject() public method

public WriteObject ( Asn1Encodable obj ) : void
obj Asn1Encodable
return void

WriteObject() public method

public WriteObject ( Asn1Object obj ) : void
obj Asn1Object
return void

WriteTag() public method

public WriteTag ( int flags, int tagNo ) : void
flags int
tagNo int
return void