diff options
author | David Hook <dgh@cryptoworkshop.com> | 2015-10-26 14:57:03 +1100 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2015-10-26 14:57:03 +1100 |
commit | 4caeedd6d96eb56729db72af5926d28130e18f3b (patch) | |
tree | bac310a7173dfd42a338f72805caaeab2e1e3f97 | |
parent | Add suffix check for test files (diff) | |
download | BouncyCastle.NET-ed25519-4caeedd6d96eb56729db72af5926d28130e18f3b.tar.xz |
removed file
-rw-r--r-- | crypto/src/crypto/ISignatureCalculatorFactory.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/crypto/src/crypto/ISignatureCalculatorFactory.cs b/crypto/src/crypto/ISignatureCalculatorFactory.cs deleted file mode 100644 index cbca7d1a7..000000000 --- a/crypto/src/crypto/ISignatureCalculatorFactory.cs +++ /dev/null @@ -1,23 +0,0 @@ -using System; - -namespace Org.BouncyCastle.Crypto -{ - /// <summary> - /// Base interface for operators that serve as stream-based signature calculators. - /// </summary> - public interface ISignatureFactory - { - /// <summary>The algorithm details object for this calculator.</summary> - Object AlgorithmDetails { get ; } - - /// <summary> - /// Create a stream calculator for this signature calculator. The stream - /// calculator is used for the actual operation of entering the data to be signed - /// and producing the signature block. - /// </summary> - /// <returns>A calculator producing an IBlockResult with a signature in it.</returns> - IStreamCalculator CreateCalculator(); - } -} - - |