Interface DigestAlgorithmIdentifierFinder

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract AlgorithmIdentifier find(AlgorithmIdentifier sigAlgId) Find the digest algorithm identifier that matches with the passed in signature algorithm identifier.
      abstract AlgorithmIdentifier find(ASN1ObjectIdentifier digestOid) Find the algorithm identifier that matches with the passed in digest name.
      abstract AlgorithmIdentifier find(String digAlgName) Find the algorithm identifier that matches with the passed in digest name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • find

         abstract AlgorithmIdentifier find(AlgorithmIdentifier sigAlgId)

        Find the digest algorithm identifier that matches with the passed in signature algorithm identifier.

        Parameters:
        sigAlgId - the signature algorithm of interest.
        Returns:

        an algorithm identifier for the corresponding digest.

      • find

         abstract AlgorithmIdentifier find(ASN1ObjectIdentifier digestOid)

        Find the algorithm identifier that matches with the passed in digest name.

        Parameters:
        digestOid - the name of the digest algorithm of interest.
        Returns:

        an algorithm identifier for the digest signature.

      • find

         abstract AlgorithmIdentifier find(String digAlgName)

        Find the algorithm identifier that matches with the passed in digest name.

        Parameters:
        digAlgName - the name of the digest algorithm of interest.
        Returns:

        an algorithm identifier for the digest signature.