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.

44 lines
1.3 KiB

2 months ago
using System;
using System.IO;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
namespace Org.BouncyCastle.Tls.Crypto.Impl.BC
{
/// <summary>Support class for ephemeral Diffie-Hellman using the BC light-weight library.</summary>
public class BcTlsDH
: TlsAgreement
{
protected readonly BcTlsDHDomain m_domain;
protected AsymmetricCipherKeyPair m_localKeyPair;
protected DHPublicKeyParameters m_peerPublicKey;
public BcTlsDH(BcTlsDHDomain domain)
{
this.m_domain = domain;
}
/// <exception cref="IOException"/>
public virtual byte[] GenerateEphemeral()
{
this.m_localKeyPair = m_domain.GenerateKeyPair();
return m_domain.EncodePublicKey((DHPublicKeyParameters)m_localKeyPair.Public);
}
/// <exception cref="IOException"/>
public virtual void ReceivePeerValue(byte[] peerValue)
{
this.m_peerPublicKey = m_domain.DecodePublicKey(peerValue);
}
/// <exception cref="IOException"/>
public virtual TlsSecret CalculateSecret()
{
return m_domain.CalculateDHAgreement((DHPrivateKeyParameters)m_localKeyPair.Private, m_peerPublicKey);
}
}
}