class org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 extends java.io.FilterInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1
  super_class: java.io.FilterInputStream
{
  final org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable this$1;
    descriptor: Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable, java.io.InputStream);
    descriptor: (Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable;Ljava/io/InputStream;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
        start local 2 // java.io.InputStream $anonymous0
         0: .line 81
            aload 0 /* this */
            aload 1
            putfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1.this$1:Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable;
            aload 0 /* this */
            aload 2 /* $anonymous0 */
            invokespecial java.io.FilterInputStream.<init>:(Ljava/io/InputStream;)V
            return
        end local 2 // java.io.InputStream $anonymous0
        end local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1;
            0    1     2  $anonymous0  Ljava/io/InputStream;
    MethodParameters:
             Name  Flags
      this$0       final
      $anonymous0  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
         0: .line 86
            aload 0 /* this */
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* b */
        start local 1 // int b
         1: .line 88
            iload 1 /* b */
            iflt 3
         2: .line 90
            aload 0 /* this */
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1.this$1:Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable;
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable.digestCalculator:Lorg/bouncycastle/operator/DigestCalculator;
            invokeinterface org.bouncycastle.operator.DigestCalculator.getOutputStream:()Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         3: .line 93
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            ireturn
        end local 1 // int b
        end local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1;
            1    4     1     b  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
        start local 1 // byte[] inBuf
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 99
            aload 0 /* this */
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1.in:Ljava/io/InputStream;
            aload 1 /* inBuf */
            iload 2 /* inOff */
            iload 3 /* inLen */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         1: .line 101
            iload 4 /* n */
            iflt 3
         2: .line 103
            aload 0 /* this */
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1.this$1:Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable;
            getfield org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable.digestCalculator:Lorg/bouncycastle/operator/DigestCalculator;
            invokeinterface org.bouncycastle.operator.DigestCalculator.getOutputStream:()Ljava/io/OutputStream;
            aload 1 /* inBuf */
            iload 2 /* inOff */
            iload 4 /* n */
            invokevirtual java.io.OutputStream.write:([BII)V
         3: .line 106
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] inBuf
        end local 0 // org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bouncycastle/cms/CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1;
            0    4     1  inBuf  [B
            0    4     2  inOff  I
            0    4     3  inLen  I
            1    4     4      n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      inBuf  
      inOff  
      inLen  
}
SourceFile: "CMSEnvelopedHelper.java"
EnclosingMethod: org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable.getInputStream:()Ljava/io/InputStream;
NestHost: org.bouncycastle.cms.CMSEnvelopedHelper
InnerClasses:
  CMSDigestAuthenticatedSecureReadable = org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable of org.bouncycastle.cms.CMSEnvelopedHelper
  org.bouncycastle.cms.CMSEnvelopedHelper$CMSDigestAuthenticatedSecureReadable$1