11 lines
209 B
C#
11 lines
209 B
C#
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface IDerivationFunction
|
|
{
|
|
IDigest Digest { get; }
|
|
|
|
void Init(IDerivationParameters parameters);
|
|
|
|
int GenerateBytes(byte[] output, int outOff, int length);
|
|
}
|