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.
39 lines
861 B
39 lines
861 B
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.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; }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|