blob: c08ad7e9848f3fb7251ca7e9378025f5631d951a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Operators.Utilities
{
public interface ISignatureAlgorithmFinder
{
AlgorithmIdentifier Find(string signatureName);
}
}
|