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.
57 lines
1.9 KiB
57 lines
1.9 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; |
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters |
|
{ |
|
public class ECGost3410Parameters |
|
: ECNamedDomainParameters |
|
{ |
|
private readonly DerObjectIdentifier _publicKeyParamSet; |
|
private readonly DerObjectIdentifier _digestParamSet; |
|
private readonly DerObjectIdentifier _encryptionParamSet; |
|
|
|
public DerObjectIdentifier PublicKeyParamSet |
|
{ |
|
get { return _publicKeyParamSet; } |
|
} |
|
|
|
public DerObjectIdentifier DigestParamSet |
|
{ |
|
get { return _digestParamSet; } |
|
} |
|
|
|
public DerObjectIdentifier EncryptionParamSet |
|
{ |
|
get { return _encryptionParamSet; } |
|
} |
|
|
|
public ECGost3410Parameters( |
|
ECNamedDomainParameters dp, |
|
DerObjectIdentifier publicKeyParamSet, |
|
DerObjectIdentifier digestParamSet, |
|
DerObjectIdentifier encryptionParamSet) |
|
: base(dp.Name, dp.Curve, dp.G, dp.N, dp.H, dp.GetSeed()) |
|
{ |
|
this._publicKeyParamSet = publicKeyParamSet; |
|
this._digestParamSet = digestParamSet; |
|
this._encryptionParamSet = encryptionParamSet; |
|
} |
|
|
|
public ECGost3410Parameters(ECDomainParameters dp, DerObjectIdentifier publicKeyParamSet, |
|
DerObjectIdentifier digestParamSet, |
|
DerObjectIdentifier encryptionParamSet) |
|
: base(publicKeyParamSet, dp.Curve, dp.G, dp.N, dp.H, dp.GetSeed()) |
|
{ |
|
this._publicKeyParamSet = publicKeyParamSet; |
|
this._digestParamSet = digestParamSet; |
|
this._encryptionParamSet = encryptionParamSet; |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|