You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
64 lines
1.3 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters |
|
{ |
|
public class DHPrivateKeyParameters |
|
: DHKeyParameters |
|
{ |
|
private readonly BigInteger x; |
|
|
|
public DHPrivateKeyParameters( |
|
BigInteger x, |
|
DHParameters parameters) |
|
: base(true, parameters) |
|
{ |
|
this.x = x; |
|
} |
|
|
|
public DHPrivateKeyParameters( |
|
BigInteger x, |
|
DHParameters parameters, |
|
DerObjectIdentifier algorithmOid) |
|
: base(true, parameters, algorithmOid) |
|
{ |
|
this.x = x; |
|
} |
|
|
|
public BigInteger X |
|
{ |
|
get { return x; } |
|
} |
|
|
|
public override bool Equals( |
|
object obj) |
|
{ |
|
if (obj == this) |
|
return true; |
|
|
|
DHPrivateKeyParameters other = obj as DHPrivateKeyParameters; |
|
|
|
if (other == null) |
|
return false; |
|
|
|
return Equals(other); |
|
} |
|
|
|
protected bool Equals( |
|
DHPrivateKeyParameters other) |
|
{ |
|
return x.Equals(other.x) && base.Equals(other); |
|
} |
|
|
|
public override int GetHashCode() |
|
{ |
|
return x.GetHashCode() ^ base.GetHashCode(); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|