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

EncodeLength() public method

public EncodeLength ( uint Length ) : void
Length uint
return void
        public void EncodeLength (uint Length) {
            Data[Pointer++] = (byte)((Length >> 24) & 0xff);
            Data[Pointer++] = (byte)((Length >> 16) & 0xff);
            Data[Pointer++] = (byte)((Length >> 8) & 0xff);
            Data[Pointer++] = (byte)(Length & 0xff);
            }