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.

37 lines
967 B

2 months ago
using System;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Agreement.Srp;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Tls.Crypto.Impl.BC
{
internal sealed class BcTlsSrp6Client
: TlsSrp6Client
{
private readonly Srp6Client m_srp6Client;
internal BcTlsSrp6Client(Srp6Client srpClient)
{
this.m_srp6Client = srpClient;
}
public BigInteger CalculateSecret(BigInteger serverB)
{
try
{
return m_srp6Client.CalculateSecret(serverB);
}
catch (CryptoException e)
{
throw new TlsFatalAlert(AlertDescription.illegal_parameter, e);
}
}
public BigInteger GenerateClientCredentials(byte[] srpSalt, byte[] identity, byte[] password)
{
return m_srp6Client.GenerateClientCredentials(srpSalt, identity, password);
}
}
}