BitSharper.EcKey.ToAddress C# (CSharp) 메소드

ToAddress() 공개 메소드

Returns the address that corresponds to the public part of this ECKey. Note that an address is derived from the RIPEMD-160 hash of the public key and is not the public key itself (which is too large to be convenient).
public ToAddress ( NetworkParameters @params ) : Address
@params NetworkParameters
리턴 Address
        public Address ToAddress(NetworkParameters @params)
        {
            var hash160 = Utils.Sha256Hash160(_pub);
            return new Address(@params, hash160);
        }