summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2015-10-26 14:57:03 +1100
committerDavid Hook <dgh@cryptoworkshop.com>2015-10-26 14:57:03 +1100
commit4caeedd6d96eb56729db72af5926d28130e18f3b (patch)
treebac310a7173dfd42a338f72805caaeab2e1e3f97 /crypto/src
parentAdd suffix check for test files (diff)
downloadBouncyCastle.NET-ed25519-4caeedd6d96eb56729db72af5926d28130e18f3b.tar.xz
removed file
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/crypto/ISignatureCalculatorFactory.cs23
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(); - } -} - -