Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/IRsa.cs
2026-06-15 18:18:16 +08:00

21 lines
595 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto
{
public interface IRsa
{
void Init(bool forEncryption, ICipherParameters parameters);
int GetInputBlockSize();
int GetOutputBlockSize();
BigInteger ConvertInput(byte[] buf, int off, int len);
BigInteger ProcessBlock(BigInteger input);
byte[] ConvertOutput(BigInteger result);
}
}
#pragma warning restore
#endif