Goedel.Cryptography.KeyFile.DataBuffer.Allocate C# (CSharp) 메소드

Allocate() 공개 메소드

public Allocate ( ) : void
리턴 void
        public void Allocate() {
            Data = new byte[Length];
            }

Usage Example

예제 #1
0
        public override byte[] Encode() {
            var DataBuffer = new DataBuffer();

            DataBuffer.Size(Tag);
            DataBuffer.Size(P);
            DataBuffer.Size(Q);
            DataBuffer.Size(G);
            DataBuffer.Size(Y);

            DataBuffer.Allocate();

            DataBuffer.Encode(Tag);
            DataBuffer.Encode(P);
            DataBuffer.Encode(Q);
            DataBuffer.Encode(G);
            DataBuffer.Encode(Y);

            return DataBuffer.Data;
            }
All Usage Examples Of Goedel.Cryptography.KeyFile.DataBuffer::Allocate