Interface IMessageImprint
-
- All Superinterfaces:
IASN1Encodable
- All Known Implementing Classes:
MessageImprintBC
public interface IMessageImprint extends IASN1Encodable
This interface represents the wrapper for MessageImprint 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 IAlgorithmIdentifier
getHashAlgorithm()
Calls actualgetHashAlgorithm
method for the wrapped MessageImprint object.byte[]
getHashedMessage()
Calls actualgetHashedMessage
method for the wrapped MessageImprint object.-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
-
-
-
Method Detail
-
getHashedMessage
byte[] getHashedMessage()
Calls actualgetHashedMessage
method for the wrapped MessageImprint object.- Returns:
- hashed message byte array.
-
getHashAlgorithm
IAlgorithmIdentifier getHashAlgorithm()
Calls actualgetHashAlgorithm
method for the wrapped MessageImprint object.- Returns:
- algorithm identifier wrapper.
-
-