C# Class Goedel.ASN1.DecodeBuffer

Buffer used to decode ASN1 data
Exibir arquivo Open project: hallambaker/Mathematical-Mesh

Public Methods

Method Description
Debug ( string Text ) : void

Write out debug message during processing

DecodeBuffer ( byte Input ) : System

Create a decode buffer from the specified byte array

Decode__BigInteger ( int Flags, int Code ) : byte[]

Decode__Integer ( int Flags, int Code ) : int

Decode__Sequence_End ( ) : void

Decode__Sequence_Start ( ) : void

Private Methods

Method Description
Read ( ) : byte

Read a byte from the input stream

ReadCheckedLength ( bool Indefinite ) : int
ReadLength ( ) : int

Read an ASN.1 Length value

Method Details

Debug() public method

Write out debug message during processing
public Debug ( string Text ) : void
Text string
return void

DecodeBuffer() public method

Create a decode buffer from the specified byte array
public DecodeBuffer ( byte Input ) : System
Input byte Byte array containing encoded data
return System

Decode__BigInteger() public method

public Decode__BigInteger ( int Flags, int Code ) : byte[]
Flags int
Code int
return byte[]

Decode__Integer() public method

public Decode__Integer ( int Flags, int Code ) : int
Flags int
Code int
return int

Decode__Sequence_End() public method

public Decode__Sequence_End ( ) : void
return void

Decode__Sequence_Start() public method

public Decode__Sequence_Start ( ) : void
return void