add all
This commit is contained in:
38
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/IBlockResult.cs
vendored
Normal file
38
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/crypto/IBlockResult.cs
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto
|
||||
{
|
||||
/// <summary>
|
||||
/// Operators that reduce their input to a single block return an object
|
||||
/// of this type.
|
||||
/// </summary>
|
||||
public interface IBlockResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Return the final result of the operation.
|
||||
/// </summary>
|
||||
/// <returns>A block of bytes, representing the result of an operation.</returns>
|
||||
byte[] Collect();
|
||||
|
||||
/// <summary>
|
||||
/// Store the final result of the operation by copying it into the destination array.
|
||||
/// </summary>
|
||||
/// <returns>The number of bytes copied into destination.</returns>
|
||||
/// <param name="destination">The byte array to copy the result into.</param>
|
||||
/// <param name="offset">The offset into destination to start copying the result at.</param>
|
||||
int Collect(byte[] destination, int offset);
|
||||
|
||||
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER || UNITY_2021_2_OR_NEWER
|
||||
/// <summary>
|
||||
/// Store the final result of the operation by copying it into the destination span.
|
||||
/// </summary>
|
||||
/// <returns>The number of bytes copied into destination.</returns>
|
||||
/// <param name="destination">The span to copy the result into.</param>
|
||||
int Collect(Span<byte> destination);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user