public class org.bouncycastle.cms.CMSAuthenticatedGenerator extends org.bouncycastle.cms.CMSEnvelopedGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.cms.CMSAuthenticatedGenerator
  super_class: org.bouncycastle.cms.CMSEnvelopedGenerator
{
  protected org.bouncycastle.cms.CMSAttributeTableGenerator authGen;
    descriptor: Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
    flags: (0x0004) ACC_PROTECTED

  protected org.bouncycastle.cms.CMSAttributeTableGenerator unauthGen;
    descriptor: Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
         0: .line 19
            aload 0 /* this */
            invokespecial org.bouncycastle.cms.CMSEnvelopedGenerator.<init>:()V
         1: .line 21
            return
        end local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/cms/CMSAuthenticatedGenerator;

  public void setAuthenticatedAttributeGenerator(org.bouncycastle.cms.CMSAttributeTableGenerator);
    descriptor: (Lorg/bouncycastle/cms/CMSAttributeTableGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
        start local 1 // org.bouncycastle.cms.CMSAttributeTableGenerator authGen
         0: .line 25
            aload 0 /* this */
            aload 1 /* authGen */
            putfield org.bouncycastle.cms.CMSAuthenticatedGenerator.authGen:Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
         1: .line 26
            return
        end local 1 // org.bouncycastle.cms.CMSAttributeTableGenerator authGen
        end local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/bouncycastle/cms/CMSAuthenticatedGenerator;
            0    2     1  authGen  Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
    MethodParameters:
         Name  Flags
      authGen  

  public void setUnauthenticatedAttributeGenerator(org.bouncycastle.cms.CMSAttributeTableGenerator);
    descriptor: (Lorg/bouncycastle/cms/CMSAttributeTableGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
        start local 1 // org.bouncycastle.cms.CMSAttributeTableGenerator unauthGen
         0: .line 30
            aload 0 /* this */
            aload 1 /* unauthGen */
            putfield org.bouncycastle.cms.CMSAuthenticatedGenerator.unauthGen:Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
         1: .line 31
            return
        end local 1 // org.bouncycastle.cms.CMSAttributeTableGenerator unauthGen
        end local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/bouncycastle/cms/CMSAuthenticatedGenerator;
            0    2     1  unauthGen  Lorg/bouncycastle/cms/CMSAttributeTableGenerator;
    MethodParameters:
           Name  Flags
      unauthGen  

  protected java.util.Map getBaseParameters(org.bouncycastle.asn1.ASN1ObjectIdentifier, org.bouncycastle.asn1.x509.AlgorithmIdentifier, org.bouncycastle.asn1.x509.AlgorithmIdentifier, byte[]);
    descriptor: (Lorg/bouncycastle/asn1/ASN1ObjectIdentifier;Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;[B)Ljava/util/Map;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
        start local 1 // org.bouncycastle.asn1.ASN1ObjectIdentifier contentType
        start local 2 // org.bouncycastle.asn1.x509.AlgorithmIdentifier digAlgId
        start local 3 // org.bouncycastle.asn1.x509.AlgorithmIdentifier macAlgId
        start local 4 // byte[] hash
         0: .line 35
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 5 /* param */
        start local 5 // java.util.Map param
         1: .line 36
            aload 5 /* param */
            ldc "contentType"
            aload 1 /* contentType */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 37
            aload 5 /* param */
            ldc "digestAlgID"
            aload 2 /* digAlgId */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 38
            aload 5 /* param */
            ldc "digest"
            aload 4 /* hash */
            invokestatic org.bouncycastle.util.Arrays.clone:([B)[B
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 39
            aload 5 /* param */
            ldc "macAlgID"
            aload 3 /* macAlgId */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 40
            aload 5 /* param */
            areturn
        end local 5 // java.util.Map param
        end local 4 // byte[] hash
        end local 3 // org.bouncycastle.asn1.x509.AlgorithmIdentifier macAlgId
        end local 2 // org.bouncycastle.asn1.x509.AlgorithmIdentifier digAlgId
        end local 1 // org.bouncycastle.asn1.ASN1ObjectIdentifier contentType
        end local 0 // org.bouncycastle.cms.CMSAuthenticatedGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/bouncycastle/cms/CMSAuthenticatedGenerator;
            0    6     1  contentType  Lorg/bouncycastle/asn1/ASN1ObjectIdentifier;
            0    6     2     digAlgId  Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;
            0    6     3     macAlgId  Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;
            0    6     4         hash  [B
            1    6     5        param  Ljava/util/Map;
    MethodParameters:
             Name  Flags
      contentType  
      digAlgId     
      macAlgId     
      hash         
}
SourceFile: "CMSAuthenticatedGenerator.java"