Exemple #1
0
        public PublicKey(VarType varType)
            : this()
        {
            var firstByte = varType.FirstByte;
            var size      = PredictLength(firstByte);

            _bytes = new byte[size];
            varType.CopyTo(_bytes);
        }