#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
namespace Org.BouncyCastle.Crypto
{
///
/// With FIPS PUB 202 a new kind of message digest was announced which supported extendable output, or variable digest sizes.
/// This interface provides the extra method required to support variable output on a digest implementation.
///
public interface IXof
: IDigest
{
///
/// Output the results of the final calculation for this digest to outLen number of bytes.
///
/// output array to write the output bytes to.
/// offset to start writing the bytes at.
/// the number of output bytes requested.
/// the number of bytes written
int DoFinal(byte[] output, int outOff, int outLen);
///
/// Start outputting the results of the final calculation for this digest. Unlike DoFinal, this method
/// will continue producing output until the Xof is explicitly reset, or signals otherwise.
///
/// output array to write the output bytes to.
/// offset to start writing the bytes at.
/// the number of output bytes requested.
/// the number of bytes written
int DoOutput(byte[] output, int outOff, int outLen);
}
}
#endif