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

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

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.io.DigestOutputStream this
        start local 1 // int b
         0: .line 25
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestOutputStream.digest:Lorg/bouncycastle/crypto/Digest;
            iload 1 /* b */
            i2b
            invokeinterface org.bouncycastle.crypto.Digest.update:(B)V
         1: .line 26
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 27
            return
        end local 1 // int b
        end local 0 // org.bouncycastle.crypto.io.DigestOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/crypto/io/DigestOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.io.DigestOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 35
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestOutputStream.digest:Lorg/bouncycastle/crypto/Digest;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface org.bouncycastle.crypto.Digest.update:([BII)V
         1: .line 36
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 37
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.bouncycastle.crypto.io.DigestOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/crypto/io/DigestOutputStream;
            0    3     1     b  [B
            0    3     2   off  I
            0    3     3   len  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.DigestOutputStream this
         0: .line 41
            aload 0 /* this */
            getfield org.bouncycastle.crypto.io.DigestOutputStream.digest:Lorg/bouncycastle/crypto/Digest;
            areturn
        end local 0 // org.bouncycastle.crypto.io.DigestOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/io/DigestOutputStream;
}
SourceFile: "DigestOutputStream.java"