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

27 lines
960 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System.IO;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto
{
/// <summary>
/// Base interface for cryptographic operations such as Hashes, MACs, and Signatures which reduce a stream of data
/// to a single value.
/// </summary>
public interface IStreamCalculator<out TResult>
{
/// <summary>Return a "sink" stream which only exists to update the implementing object.</summary>
/// <returns>A stream to write to in order to update the implementing object.</returns>
Stream Stream { get; }
/// <summary>
/// Return the result of processing the stream. This value is only available once the stream
/// has been closed.
/// </summary>
/// <returns>The result of processing the stream.</returns>
TResult GetResult();
}
}
#pragma warning restore
#endif