Goedel.Cryptography.KeyFile.DataBuffer.Decode C# (CSharp) Method

Decode() public method

public Decode ( byte &Result ) : void
Result byte
return void
        public void Decode(out byte[] Result) {
            var Bytes = DecodeLength();
            Result = new byte[Bytes];

            Array.Copy(Data, Pointer, Result, 0, Bytes);
            Pointer += Bytes;
            }

Same methods

DataBuffer::Decode ( string &Result ) : void

Usage Example

 public SSH_DSS(DataBuffer DataBuffer) {
     DataBuffer.Decode(out P);
     DataBuffer.Decode(out Q);
     DataBuffer.Decode(out G);
     DataBuffer.Decode(out Y);
     }
All Usage Examples Of Goedel.Cryptography.KeyFile.DataBuffer::Decode