1package org.bouncycastle.operator;
2
3import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
4
5public interface SignatureAlgorithmIdentifierFinder
6{
7    /**
8     * Find the signature algorithm identifier that matches with
9     * the passed in signature algorithm name.
10     *
11     * @param sigAlgName the name of the signature algorithm of interest.
12     * @return an algorithm identifier for the corresponding signature.
13     */
14    AlgorithmIdentifier find(String sigAlgName);
15}