class org.bouncycastle.jcajce.io.DigestUpdatingOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.bouncycastle.jcajce.io.DigestUpdatingOutputStream
  super_class: java.io.OutputStream
{
  private java.security.MessageDigest digest;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.security.MessageDigest);
    descriptor: (Ljava/security/MessageDigest;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
        start local 1 // java.security.MessageDigest digest
         0: .line 12
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 14
            aload 0 /* this */
            aload 1 /* digest */
            putfield org.bouncycastle.jcajce.io.DigestUpdatingOutputStream.digest:Ljava/security/MessageDigest;
         2: .line 15
            return
        end local 1 // java.security.MessageDigest digest
        end local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/jcajce/io/DigestUpdatingOutputStream;
            0    3     1  digest  Ljava/security/MessageDigest;
    MethodParameters:
        Name  Flags
      digest  

  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.jcajce.io.DigestUpdatingOutputStream this
        start local 1 // byte[] bytes
        start local 2 // int off
        start local 3 // int len
         0: .line 20
            aload 0 /* this */
            getfield org.bouncycastle.jcajce.io.DigestUpdatingOutputStream.digest:Ljava/security/MessageDigest;
            aload 1 /* bytes */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.update:([BII)V
         1: .line 21
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] bytes
        end local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/bouncycastle/jcajce/io/DigestUpdatingOutputStream;
            0    2     1  bytes  [B
            0    2     2    off  I
            0    2     3    len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      off    
      len    

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
        start local 1 // byte[] bytes
         0: .line 26
            aload 0 /* this */
            getfield org.bouncycastle.jcajce.io.DigestUpdatingOutputStream.digest:Ljava/security/MessageDigest;
            aload 1 /* bytes */
            invokevirtual java.security.MessageDigest.update:([B)V
         1: .line 27
            return
        end local 1 // byte[] bytes
        end local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/bouncycastle/jcajce/io/DigestUpdatingOutputStream;
            0    2     1  bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
        start local 1 // int b
         0: .line 32
            aload 0 /* this */
            getfield org.bouncycastle.jcajce.io.DigestUpdatingOutputStream.digest:Ljava/security/MessageDigest;
            iload 1 /* b */
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         1: .line 33
            return
        end local 1 // int b
        end local 0 // org.bouncycastle.jcajce.io.DigestUpdatingOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/jcajce/io/DigestUpdatingOutputStream;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "DigestUpdatingOutputStream.java"