From ddb68091eb12df5a866a585d03dd4e645b1b1473 Mon Sep 17 00:00:00 2001 From: David Hook Date: Sat, 24 Oct 2015 16:39:50 +1100 Subject: fixed file name --- crypto/src/crypto/ISignatureFactory.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 crypto/src/crypto/ISignatureFactory.cs (limited to 'crypto/src') diff --git a/crypto/src/crypto/ISignatureFactory.cs b/crypto/src/crypto/ISignatureFactory.cs new file mode 100644 index 000000000..cbca7d1a7 --- /dev/null +++ b/crypto/src/crypto/ISignatureFactory.cs @@ -0,0 +1,23 @@ +using System; + +namespace Org.BouncyCastle.Crypto +{ + /// + /// Base interface for operators that serve as stream-based signature calculators. + /// + public interface ISignatureFactory + { + /// The algorithm details object for this calculator. + Object AlgorithmDetails { get ; } + + /// + /// 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. + /// + /// A calculator producing an IBlockResult with a signature in it. + IStreamCalculator CreateCalculator(); + } +} + + -- cgit 1.5.1