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
894 B
37 lines
894 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 BcTlsSrp6Server
|
||
|
: TlsSrp6Server
|
||
|
{
|
||
|
private readonly Srp6Server m_srp6Server;
|
||
|
|
||
|
internal BcTlsSrp6Server(Srp6Server srp6Server)
|
||
|
{
|
||
|
this.m_srp6Server = srp6Server;
|
||
|
}
|
||
|
|
||
|
public BigInteger GenerateServerCredentials()
|
||
|
{
|
||
|
return m_srp6Server.GenerateServerCredentials();
|
||
|
}
|
||
|
|
||
|
public BigInteger CalculateSecret(BigInteger clientA)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return m_srp6Server.CalculateSecret(clientA);
|
||
|
}
|
||
|
catch (CryptoException e)
|
||
|
{
|
||
|
throw new TlsFatalAlert(AlertDescription.illegal_parameter, e);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|