<PackageReference Include="BouncyCastle.Cryptography" Version="2.3.0" />
IXof
using System;
namespace Org.
BouncyCastle.
Crypto
{
public interface IXof :
IDigest
{
int OutputFinal(
byte[]
output,
int outOff,
int outLen);
int OutputFinal(
Span<
byte>
output);
int Output(
byte[]
output,
int outOff,
int outLen);
int Output(
Span<
byte>
output);
}
}