From 3585bbfd9ae9c9ce82854c91a1aae61a0d57720c Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 16 Nov 2015 13:28:13 +0700 Subject: More rename/delete --- crypto/src/crypto/prng/ISP80090Drbg.cs | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 crypto/src/crypto/prng/ISP80090Drbg.cs (limited to 'crypto/src') diff --git a/crypto/src/crypto/prng/ISP80090Drbg.cs b/crypto/src/crypto/prng/ISP80090Drbg.cs deleted file mode 100644 index c39cf365f..000000000 --- a/crypto/src/crypto/prng/ISP80090Drbg.cs +++ /dev/null @@ -1,33 +0,0 @@ -namespace Org.BouncyCastle.Crypto.Prng.Drbg -{ - /** - * Interface to SP800-90A deterministic random bit generators. - */ - public interface SP80090Drbg - { - /** - * Return the block size of the DRBG. - * - * @return the block size (in bits) produced by each round of the DRBG. - */ - int BlockSize { get; } - - /** - * Populate a passed in array with random data. - * - * @param output output array for generated bits. - * @param additionalInput additional input to be added to the DRBG in this step. - * @param predictionResistant true if a reseed should be forced, false otherwise. - * - * @return number of bits generated, -1 if a reseed required. - */ - int Generate(byte[] output, byte[] additionalInput, bool predictionResistant); - - /** - * Reseed the DRBG. - * - * @param additionalInput additional input to be added to the DRBG in this step. - */ - void Reseed(byte[] additionalInput); - } -} -- cgit 1.5.1