Unity_Web/Assets/Best HTTP/Source/SecureProtocol/crypto/parameters/ParametersWithRandom.cs

38 lines
1.0 KiB
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
public class ParametersWithRandom
: ICipherParameters
{
private readonly ICipherParameters m_parameters;
private readonly SecureRandom m_random;
public ParametersWithRandom(ICipherParameters parameters)
: this(parameters, CryptoServicesRegistrar.GetSecureRandom())
{
}
public ParametersWithRandom(ICipherParameters parameters, SecureRandom random)
{
if (parameters == null)
throw new ArgumentNullException(nameof(parameters));
if (random == null)
throw new ArgumentNullException(nameof(random));
m_parameters = parameters;
m_random = random;
}
public ICipherParameters Parameters => m_parameters;
public SecureRandom Random => m_random;
}
}
#pragma warning restore
#endif