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.
35 lines
688 B
35 lines
688 B
2 months ago
|
using System;
|
||
|
|
||
|
using Org.BouncyCastle.Math;
|
||
|
|
||
|
namespace Org.BouncyCastle.Crypto.Parameters
|
||
|
{
|
||
|
public class RsaBlindingParameters
|
||
|
: ICipherParameters
|
||
|
{
|
||
|
private readonly RsaKeyParameters publicKey;
|
||
|
private readonly BigInteger blindingFactor;
|
||
|
|
||
|
public RsaBlindingParameters(
|
||
|
RsaKeyParameters publicKey,
|
||
|
BigInteger blindingFactor)
|
||
|
{
|
||
|
if (publicKey.IsPrivate)
|
||
|
throw new ArgumentException("RSA parameters should be for a public key");
|
||
|
|
||
|
this.publicKey = publicKey;
|
||
|
this.blindingFactor = blindingFactor;
|
||
|
}
|
||
|
|
||
|
public RsaKeyParameters PublicKey
|
||
|
{
|
||
|
get { return publicKey; }
|
||
|
}
|
||
|
|
||
|
public BigInteger BlindingFactor
|
||
|
{
|
||
|
get { return blindingFactor; }
|
||
|
}
|
||
|
}
|
||
|
}
|