You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
|
||
|
namespace BestHTTP.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);
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|