Interface IAlgorithmIdentifier
-
- All Superinterfaces:
IASN1Encodable
- All Known Implementing Classes:
AlgorithmIdentifierBC
public interface IAlgorithmIdentifier extends IASN1Encodable
This interface represents the wrapper for AlgorithmIdentifier that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IASN1ObjectIdentifiergetAlgorithm()Calls actualgetAlgorithmmethod for the wrapped AlgorithmIdentifier object.IASN1EncodablegetParameters()Calls actualgetParametersmethod for the wrapped AlgorithmIdentifier object.-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
-
-
-
Method Detail
-
getAlgorithm
IASN1ObjectIdentifier getAlgorithm()
Calls actualgetAlgorithmmethod for the wrapped AlgorithmIdentifier object.- Returns:
IASN1ObjectIdentifierwrapped algorithm ASN1ObjectIdentifier.
-
getParameters
IASN1Encodable getParameters()
Calls actualgetParametersmethod for the wrapped AlgorithmIdentifier object.- Returns:
IASN1Encodablewrapped algorithm parameters.
-
-