add all
This commit is contained in:
26
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/IStreamCalculator.cs
vendored
Normal file
26
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/IStreamCalculator.cs
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user