Class DigestedData

  • All Implemented Interfaces:
    ASN1Encodable, Encodable

    public class DigestedData
    extends ASN1Object
    RFC 5652 DigestedData object.
     DigestedData ::= SEQUENCE {
           version CMSVersion,
           digestAlgorithm DigestAlgorithmIdentifier,
           encapContentInfo EncapsulatedContentInfo,
           digest Digest }
     
    • Method Detail

      • getInstance

        public static DigestedData getInstance​(ASN1TaggedObject ato,
                                               boolean isExplicit)
        Return a DigestedData object from a tagged object.
        Parameters:
        ato - the tagged object holding the object we want.
        isExplicit - true if the object is meant to be explicitly tagged false otherwise.
        Throws:
        java.lang.IllegalArgumentException - if the object held by the tagged object cannot be converted.
      • getInstance

        public static DigestedData getInstance​(java.lang.Object obj)
        Return a DigestedData object from the given object.

        Accepted inputs:

        Parameters:
        obj - the object we want converted.
        Throws:
        java.lang.IllegalArgumentException - if the object cannot be converted.
      • getEncapContentInfo

        public ContentInfo getEncapContentInfo()
      • getDigest

        public byte[] getDigest()