thewar_client/Client/Assets/Best HTTP/Source/SecureProtocol/crypto/agreement/X25519Agreement.cs

43 lines
1.3 KiB
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Agreement
{
public sealed class X25519Agreement
: IRawAgreement
{
private X25519PrivateKeyParameters m_privateKey;
public void Init(ICipherParameters parameters)
{
m_privateKey = (X25519PrivateKeyParameters)parameters;
}
public int AgreementSize
{
get { return X25519PrivateKeyParameters.SecretSize; }
}
public void CalculateAgreement(ICipherParameters publicKey, byte[] buf, int off)
{
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER || _UNITY_2021_2_OR_NEWER_
CalculateAgreement(publicKey, buf.AsSpan(off));
#else
m_privateKey.GenerateSecret((X25519PublicKeyParameters)publicKey, buf, off);
#endif
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER || _UNITY_2021_2_OR_NEWER_
public void CalculateAgreement(ICipherParameters publicKey, Span<byte> buf)
{
m_privateKey.GenerateSecret((X25519PublicKeyParameters)publicKey, buf);
}
#endif
}
}
#pragma warning restore
#endif