public class org.bouncycastle.crypto.io.DigestInputStream extends java.io.FilterInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.io.DigestInputStream
  super_class: java.io.FilterInputStream
{
  protected org.bouncycastle.crypto.Digest digest;
    descriptor: Lorg/bouncycastle/crypto/Digest;
    flags: (0x0004) ACC_PROTECTED

  public void <init>(java.io.InputStream, org.bouncycastle.crypto.Digest);
    descriptor: (Ljava/io/InputStream;Lorg/bouncycastle/crypto/Digest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.io.DigestInputStream this
        start local 1 // java.io.InputStream stream
        start local 2 // org.bouncycastle.crypto.Digest digest
         0: .line 18
            aload 0 /* this */
            aload 1 /* stream */
            invokespecial java.io.FilterInputStream.<init>:(Ljava/io/InputStream;)V
         1: .line 19
            aload 0 /* this */
            aload 2 /* digest */
            putfield org.bouncycastle.crypto.io.DigestInputStream.digest:Lorg/bouncycastle/crypto/Digest;
         2: .line 20
            return
        end local 2 // org.bouncycastle.crypto.Digest digest
        end local 1 // java.io.InputStream stream
        end local 0 // org.bouncycastle.crypto.io.DigestInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/crypto/io/DigestInputStream;
            0    3     1  stream  Ljava/io/InputStream;
            0    3     2  digest  Lorg/bouncycastle/crypto/Digest;
    MethodParameters:
        Name  Flags
      stream  
      digest  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.io.DigestInputStream this
         0: .line 25
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* b */
        start local 1 // int b
         1: .line 27
            iload 1 /* b */
            iflt 3
         2: .line 29
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestInputStream.digest:Lorg/bouncycastle/crypto/Digest;
            iload 1 /* b */
            i2b
            invokeinterface org.bouncycastle.crypto.Digest.update:(B)V
         3: .line 31
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            ireturn
        end local 1 // int b
        end local 0 // org.bouncycastle.crypto.io.DigestInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/crypto/io/DigestInputStream;
            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.crypto.io.DigestInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 40
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestInputStream.in:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         1: .line 41
            iload 4 /* n */
            ifle 3
         2: .line 43
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestInputStream.digest:Lorg/bouncycastle/crypto/Digest;
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* n */
            invokeinterface org.bouncycastle.crypto.Digest.update:([BII)V
         3: .line 45
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.bouncycastle.crypto.io.DigestInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/crypto/io/DigestInputStream;
            0    4     1     b  [B
            0    4     2   off  I
            0    4     3   len  I
            1    4     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public org.bouncycastle.crypto.Digest getDigest();
    descriptor: ()Lorg/bouncycastle/crypto/Digest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.io.DigestInputStream this
         0: .line 50
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestInputStream.digest:Lorg/bouncycastle/crypto/Digest;
            areturn
        end local 0 // org.bouncycastle.crypto.io.DigestInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/io/DigestInputStream;
}
SourceFile: "DigestInputStream.java"