NBitcoin.Crypto.ECKey.GetPubKey C# (CSharp) Méthode

GetPubKey() public méthode

public GetPubKey ( bool isCompressed ) : byte[]
isCompressed bool
Résultat byte[]
        public byte[] GetPubKey(bool isCompressed)
        {
            var q = GetPublicKeyParameters().Q;
            //Pub key (q) is composed into X and Y, the compressed form only include X, which can derive Y along with 02 or 03 prepent depending on whether Y in even or odd.
            q = q.Normalize();
            var result =
                Secp256k1.Curve.CreatePoint(q.XCoord.ToBigInteger(), q.YCoord.ToBigInteger()).GetEncoded(isCompressed);
            return result;
        }