Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Crypto/IRawAgreement.cs
2025-10-09 09:57:24 +09:00

11 lines
219 B
C#

namespace Org.BouncyCastle.Crypto;
public interface IRawAgreement
{
int AgreementSize { get; }
void Init(ICipherParameters parameters);
void CalculateAgreement(ICipherParameters publicKey, byte[] buf, int off);
}