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.
41 lines
1006 B
41 lines
1006 B
using System;
|
|
|
|
using Org.BouncyCastle.Asn1;
|
|
using Org.BouncyCastle.Asn1.CryptoPro;
|
|
using Org.BouncyCastle.Security;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Parameters
|
|
{
|
|
public class ECKeyGenerationParameters
|
|
: KeyGenerationParameters
|
|
{
|
|
private readonly ECDomainParameters domainParams;
|
|
private readonly DerObjectIdentifier publicKeyParamSet;
|
|
|
|
public ECKeyGenerationParameters(
|
|
ECDomainParameters domainParameters,
|
|
SecureRandom random)
|
|
: base(random, domainParameters.N.BitLength)
|
|
{
|
|
this.domainParams = domainParameters;
|
|
}
|
|
|
|
public ECKeyGenerationParameters(
|
|
DerObjectIdentifier publicKeyParamSet,
|
|
SecureRandom random)
|
|
: this(ECKeyParameters.LookupParameters(publicKeyParamSet), random)
|
|
{
|
|
this.publicKeyParamSet = publicKeyParamSet;
|
|
}
|
|
|
|
public ECDomainParameters DomainParameters
|
|
{
|
|
get { return domainParams; }
|
|
}
|
|
|
|
public DerObjectIdentifier PublicKeyParamSet
|
|
{
|
|
get { return publicKeyParamSet; }
|
|
}
|
|
}
|
|
}
|
|
|