diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-07-26 13:28:56 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-07-26 13:28:56 +0700 |
commit | a69de14e882795cc0a0c4d1e7910e08044318626 (patch) | |
tree | 3a5ab7703d2e7b8ece047496986234322f6b7e37 /crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs | |
parent | Refactoring around algorithm finders (diff) | |
download | BouncyCastle.NET-ed25519-a69de14e882795cc0a0c4d1e7910e08044318626.tar.xz |
Create new API for algorithm finders
Diffstat (limited to 'crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs')
-rw-r--r-- | crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs b/crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs new file mode 100644 index 000000000..c08ad7e98 --- /dev/null +++ b/crypto/src/operators/utilities/ISignatureAlgorithmFinder.cs @@ -0,0 +1,9 @@ +using Org.BouncyCastle.Asn1.X509; + +namespace Org.BouncyCastle.Operators.Utilities +{ + public interface ISignatureAlgorithmFinder + { + AlgorithmIdentifier Find(string signatureName); + } +} |