Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Crypto/Parameters/Gost3410PrivateKeyParameters.cs
2025-10-09 09:57:24 +09:00

33 lines
879 B
C#

using System;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto.Parameters;
public class Gost3410PrivateKeyParameters : Gost3410KeyParameters
{
private readonly BigInteger x;
public BigInteger X => x;
public Gost3410PrivateKeyParameters(BigInteger x, Gost3410Parameters parameters)
: base(isPrivate: true, parameters)
{
if (x.SignValue < 1 || x.BitLength > 256 || x.CompareTo(base.Parameters.Q) >= 0)
{
throw new ArgumentException("Invalid x for GOST3410 private key", "x");
}
this.x = x;
}
public Gost3410PrivateKeyParameters(BigInteger x, DerObjectIdentifier publicKeyParamSet)
: base(isPrivate: true, publicKeyParamSet)
{
if (x.SignValue < 1 || x.BitLength > 256 || x.CompareTo(base.Parameters.Q) >= 0)
{
throw new ArgumentException("Invalid x for GOST3410 private key", "x");
}
this.x = x;
}
}