Class EncryptedValue

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

public class EncryptedValue extends org.bouncycastle.asn1.ASN1Object
EncryptedValue Please see reference to pending deprecation in favour of EnvelopedData. Abstract of:
  • Constructor Summary

    Constructors
    Constructor
    Description
    EncryptedValue(org.bouncycastle.asn1.x509.AlgorithmIdentifier intendedAlg, org.bouncycastle.asn1.x509.AlgorithmIdentifier symmAlg, org.bouncycastle.asn1.ASN1BitString encSymmKey, org.bouncycastle.asn1.x509.AlgorithmIdentifier keyAlg, org.bouncycastle.asn1.ASN1OctetString valueHint, org.bouncycastle.asn1.ASN1BitString encValue)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.bouncycastle.asn1.ASN1BitString
     
    org.bouncycastle.asn1.ASN1BitString
     
     
    org.bouncycastle.asn1.x509.AlgorithmIdentifier
     
    org.bouncycastle.asn1.x509.AlgorithmIdentifier
     
    org.bouncycastle.asn1.x509.AlgorithmIdentifier
     
    org.bouncycastle.asn1.ASN1OctetString
     
    org.bouncycastle.asn1.ASN1Primitive
    (IMPLICIT TAGS) EncryptedValue ::= SEQUENCE { intendedAlg [0] AlgorithmIdentifier OPTIONAL, -- the intended algorithm for which the value will be used symmAlg [1] AlgorithmIdentifier OPTIONAL, -- the symmetric algorithm used to encrypt the value encSymmKey [2] BIT STRING OPTIONAL, -- the (encrypted) symmetric key used to encrypt the value keyAlg [3] AlgorithmIdentifier OPTIONAL, -- algorithm used to encrypt the symmetric key valueHint [4] OCTET STRING OPTIONAL, -- a brief description or identifier of the encValue content -- (may be meaningful only to the sending entity, and used only -- if EncryptedValue might be re-examined by the sending entity -- in the future) encValue BIT STRING } -- the encrypted value itself

    Methods inherited from class org.bouncycastle.asn1.ASN1Object

    encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • EncryptedValue

      public EncryptedValue(org.bouncycastle.asn1.x509.AlgorithmIdentifier intendedAlg, org.bouncycastle.asn1.x509.AlgorithmIdentifier symmAlg, org.bouncycastle.asn1.ASN1BitString encSymmKey, org.bouncycastle.asn1.x509.AlgorithmIdentifier keyAlg, org.bouncycastle.asn1.ASN1OctetString valueHint, org.bouncycastle.asn1.ASN1BitString encValue)
  • Method Details

    • getInstance

      public static EncryptedValue getInstance(Object o)
    • getIntendedAlg

      public org.bouncycastle.asn1.x509.AlgorithmIdentifier getIntendedAlg()
    • getSymmAlg

      public org.bouncycastle.asn1.x509.AlgorithmIdentifier getSymmAlg()
    • getEncSymmKey

      public org.bouncycastle.asn1.ASN1BitString getEncSymmKey()
    • getKeyAlg

      public org.bouncycastle.asn1.x509.AlgorithmIdentifier getKeyAlg()
    • getValueHint

      public org.bouncycastle.asn1.ASN1OctetString getValueHint()
    • getEncValue

      public org.bouncycastle.asn1.ASN1BitString getEncValue()
    • toASN1Primitive

      public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
       (IMPLICIT TAGS)
       EncryptedValue ::= SEQUENCE {
                           intendedAlg   [0] AlgorithmIdentifier  OPTIONAL,
                           -- the intended algorithm for which the value will be used
                           symmAlg       [1] AlgorithmIdentifier  OPTIONAL,
                           -- the symmetric algorithm used to encrypt the value
                           encSymmKey    [2] BIT STRING           OPTIONAL,
                           -- the (encrypted) symmetric key used to encrypt the value
                           keyAlg        [3] AlgorithmIdentifier  OPTIONAL,
                           -- algorithm used to encrypt the symmetric key
                           valueHint     [4] OCTET STRING         OPTIONAL,
                           -- a brief description or identifier of the encValue content
                           -- (may be meaningful only to the sending entity, and used only
                           -- if EncryptedValue might be re-examined by the sending entity
                           -- in the future)
                           encValue       BIT STRING }
                           -- the encrypted value itself
       
      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.