NBitcoin.BouncyCastle.Crypto.Parameters.ECDomainParameters.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return curve.GetHashCode()
				^ g.GetHashCode()
				^ n.GetHashCode()
				^ h.GetHashCode()
				^ Arrays.GetHashCode(seed);
		}
	}

Usage Example

示例#1
0
 public override int GetHashCode()
 {
     return(parameters.GetHashCode() ^ base.GetHashCode());
 }