Package org.bouncycastle.asn1.tsp
Class MessageImprint
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.tsp.MessageImprint
-
- All Implemented Interfaces:
ASN1Encodable
,Encodable
public class MessageImprint extends ASN1Object
-
-
Constructor Summary
Constructors Constructor Description MessageImprint(AlgorithmIdentifier hashAlgorithm, byte[] hashedMessage)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AlgorithmIdentifier
getHashAlgorithm()
byte[]
getHashedMessage()
static MessageImprint
getInstance(java.lang.Object o)
ASN1Primitive
toASN1Primitive()
MessageImprint ::= SEQUENCE { hashAlgorithm AlgorithmIdentifier, hashedMessage OCTET STRING }-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
-
-
-
Constructor Detail
-
MessageImprint
public MessageImprint(AlgorithmIdentifier hashAlgorithm, byte[] hashedMessage)
-
-
Method Detail
-
getInstance
public static MessageImprint getInstance(java.lang.Object o)
- Parameters:
o
-- Returns:
- a MessageImprint object.
-
getHashAlgorithm
public AlgorithmIdentifier getHashAlgorithm()
-
getHashedMessage
public byte[] getHashedMessage()
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
MessageImprint ::= SEQUENCE { hashAlgorithm AlgorithmIdentifier, hashedMessage OCTET STRING }
- Specified by:
toASN1Primitive
in interfaceASN1Encodable
- Specified by:
toASN1Primitive
in classASN1Object
- Returns:
- a primitive representation of this object.
-
-