• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.operator;
2 
3 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
4 
5 public 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      */
find(String sigAlgName)14     AlgorithmIdentifier find(String sigAlgName);
15 }