Class EncryptedData

java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.cms.EncryptedData
All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable, org.bouncycastle.util.Encodable

public class EncryptedData extends org.bouncycastle.asn1.ASN1Object
RFC 5652 EncryptedData object.

 EncryptedData ::= SEQUENCE {
     version CMSVersion,
     encryptedContentInfo EncryptedContentInfo,
     unprotectedAttrs [1] IMPLICIT UnprotectedAttributes OPTIONAL }
 
  • Constructor Details

  • Method Details

    • getInstance

      public static EncryptedData getInstance(Object o)
      Return an EncryptedData object from the given object.

      Accepted inputs:

      Parameters:
      o - the object we want converted.
      Throws:
      IllegalArgumentException - if the object cannot be converted.
    • getVersion

      public org.bouncycastle.asn1.ASN1Integer getVersion()
    • getEncryptedContentInfo

      public EncryptedContentInfo getEncryptedContentInfo()
    • getUnprotectedAttrs

      public org.bouncycastle.asn1.ASN1Set getUnprotectedAttrs()
    • toASN1Primitive

      public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
      Specified by:
      toASN1Primitive in interface org.bouncycastle.asn1.ASN1Encodable
      Specified by:
      toASN1Primitive in class org.bouncycastle.asn1.ASN1Object
      Returns:
      a basic ASN.1 object representation.