public class sun.security.util.HexDumpEncoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.util.HexDumpEncoder
  super_class: java.lang.Object
{
  private int offset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int thisLineLength;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int currentByte;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private byte[] thisLine;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  protected java.io.PrintStream pStream;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.util.HexDumpEncoder this
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            bipush 16
            newarray 8
            putfield sun.security.util.HexDumpEncoder.thisLine:[B
         2: .line 51
            return
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/util/HexDumpEncoder;

  static void hexDigit(java.io.PrintStream, byte);
    descriptor: (Ljava/io/PrintStream;B)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.io.PrintStream p
        start local 1 // byte x
         0: .line 61
            iload 1 /* x */
            iconst_4
            ishr
            bipush 15
            iand
            i2c
            istore 2 /* c */
        start local 2 // char c
         1: .line 62
            iload 2 /* c */
            bipush 9
            if_icmple 3
         2: .line 63
            iload 2 /* c */
            bipush 10
            isub
            bipush 65
            iadd
            i2c
            istore 2 /* c */
            goto 4
         3: .line 65
      StackMap locals: int
      StackMap stack:
            iload 2 /* c */
            bipush 48
            iadd
            i2c
            istore 2 /* c */
         4: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* p */
            iload 2 /* c */
            invokevirtual java.io.PrintStream.write:(I)V
         5: .line 67
            iload 1 /* x */
            bipush 15
            iand
            i2c
            istore 2 /* c */
         6: .line 68
            iload 2 /* c */
            bipush 9
            if_icmple 8
         7: .line 69
            iload 2 /* c */
            bipush 10
            isub
            bipush 65
            iadd
            i2c
            istore 2 /* c */
            goto 9
         8: .line 71
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            bipush 48
            iadd
            i2c
            istore 2 /* c */
         9: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* p */
            iload 2 /* c */
            invokevirtual java.io.PrintStream.write:(I)V
        10: .line 73
            return
        end local 2 // char c
        end local 1 // byte x
        end local 0 // java.io.PrintStream p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0     p  Ljava/io/PrintStream;
            0   11     1     x  B
            1   11     2     c  C
    MethodParameters:
      Name  Flags
      p     
      x     

  protected int bytesPerAtom();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.util.HexDumpEncoder this
         0: .line 76
            iconst_1
            ireturn
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/HexDumpEncoder;

  protected int bytesPerLine();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.util.HexDumpEncoder this
         0: .line 80
            bipush 16
            ireturn
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/util/HexDumpEncoder;

  protected void encodeBufferPrefix(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.OutputStream o
         0: .line 84
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.HexDumpEncoder.offset:I
         1: .line 85
            aload 0 /* this */
            new java.io.PrintStream
            dup
            aload 1 /* o */
            invokespecial java.io.PrintStream.<init>:(Ljava/io/OutputStream;)V
            putfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
         2: .line 86
            return
        end local 1 // java.io.OutputStream o
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/util/HexDumpEncoder;
            0    3     1     o  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      o     

  protected void encodeLinePrefix(java.io.OutputStream, int);
    descriptor: (Ljava/io/OutputStream;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.OutputStream o
        start local 2 // int len
         0: .line 89
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.offset:I
            bipush 8
            iushr
            sipush 255
            iand
            i2b
            invokestatic sun.security.util.HexDumpEncoder.hexDigit:(Ljava/io/PrintStream;B)V
         1: .line 90
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.offset:I
            sipush 255
            iand
            i2b
            invokestatic sun.security.util.HexDumpEncoder.hexDigit:(Ljava/io/PrintStream;B)V
         2: .line 91
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc ": "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         3: .line 92
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.HexDumpEncoder.currentByte:I
         4: .line 93
            aload 0 /* this */
            iload 2 /* len */
            putfield sun.security.util.HexDumpEncoder.thisLineLength:I
         5: .line 94
            return
        end local 2 // int len
        end local 1 // java.io.OutputStream o
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/util/HexDumpEncoder;
            0    6     1     o  Ljava/io/OutputStream;
            0    6     2   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      o     
      len   

  protected void encodeAtom(java.io.OutputStream, byte[], int, int);
    descriptor: (Ljava/io/OutputStream;[BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.OutputStream o
        start local 2 // byte[] buf
        start local 3 // int off
        start local 4 // int len
         0: .line 97
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLine:[B
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.currentByte:I
            aload 2 /* buf */
            iload 3 /* off */
            baload
            bastore
         1: .line 98
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            aload 2 /* buf */
            iload 3 /* off */
            baload
            invokestatic sun.security.util.HexDumpEncoder.hexDigit:(Ljava/io/PrintStream;B)V
         2: .line 99
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         3: .line 100
            aload 0 /* this */
            dup
            getfield sun.security.util.HexDumpEncoder.currentByte:I
            iconst_1
            iadd
            putfield sun.security.util.HexDumpEncoder.currentByte:I
         4: .line 101
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.currentByte:I
            bipush 8
            if_icmpne 6
         5: .line 102
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc "  "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         6: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int len
        end local 3 // int off
        end local 2 // byte[] buf
        end local 1 // java.io.OutputStream o
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/util/HexDumpEncoder;
            0    7     1     o  Ljava/io/OutputStream;
            0    7     2   buf  [B
            0    7     3   off  I
            0    7     4   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      o     
      buf   
      off   
      len   

  protected void encodeLineSuffix(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.OutputStream o
         0: .line 106
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLineLength:I
            bipush 16
            if_icmpge 8
         1: .line 107
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLineLength:I
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 108
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc "   "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         4: .line 109
            iload 2 /* i */
            bipush 7
            if_icmpne 6
         5: .line 110
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc "  "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         6: .line 107
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            bipush 16
            if_icmplt 3
        end local 2 // int i
         8: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         9: .line 114
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        10: goto 16
        11: .line 115
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLine:[B
            iload 2 /* i */
            baload
            bipush 32
            if_icmplt 12
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLine:[B
            iload 2 /* i */
            baload
            bipush 122
            if_icmple 14
        12: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            ldc "."
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        13: .line 117
            goto 15
        14: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLine:[B
            iload 2 /* i */
            baload
            invokevirtual java.io.PrintStream.write:(I)V
        15: .line 114
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 2 /* i */
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLineLength:I
            if_icmplt 11
        end local 2 // int i
        17: .line 121
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.pStream:Ljava/io/PrintStream;
            invokevirtual java.io.PrintStream.println:()V
        18: .line 122
            aload 0 /* this */
            dup
            getfield sun.security.util.HexDumpEncoder.offset:I
            aload 0 /* this */
            getfield sun.security.util.HexDumpEncoder.thisLineLength:I
            iadd
            putfield sun.security.util.HexDumpEncoder.offset:I
        19: .line 123
            return
        end local 1 // java.io.OutputStream o
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lsun/security/util/HexDumpEncoder;
            0   20     1     o  Ljava/io/OutputStream;
            2    8     2     i  I
           10   17     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      o     

  protected int readFully(java.io.InputStream, byte[]);
    descriptor: (Ljava/io/InputStream;[B)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.InputStream in
        start local 2 // byte[] buffer
         0: .line 134
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 7
         2: .line 135
      StackMap locals: int
      StackMap stack:
            aload 1 /* in */
            invokevirtual java.io.InputStream.read:()I
            istore 4 /* q */
        start local 4 // int q
         3: .line 136
            iload 4 /* q */
            iconst_m1
            if_icmpne 5
         4: .line 137
            iload 3 /* i */
            ireturn
         5: .line 138
      StackMap locals: int
      StackMap stack:
            aload 2 /* buffer */
            iload 3 /* i */
            iload 4 /* q */
            i2b
            bastore
        end local 4 // int q
         6: .line 134
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 2 /* buffer */
            arraylength
            if_icmplt 2
        end local 3 // int i
         8: .line 140
            aload 2 /* buffer */
            arraylength
            ireturn
        end local 2 // byte[] buffer
        end local 1 // java.io.InputStream in
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lsun/security/util/HexDumpEncoder;
            0    9     1      in  Ljava/io/InputStream;
            0    9     2  buffer  [B
            1    8     3       i  I
            3    6     4       q  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      buffer  

  public void encode(java.io.InputStream, java.io.OutputStream);
    descriptor: (Ljava/io/InputStream;Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.InputStream inStream
        start local 2 // java.io.OutputStream outStream
         0: .line 154
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerLine:()I
            newarray 8
            astore 5 /* tmpbuffer */
        start local 5 // byte[] tmpbuffer
         1: .line 156
            aload 0 /* this */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeBufferPrefix:(Ljava/io/OutputStream;)V
         2: .line 159
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top top byte[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* inStream */
            aload 5 /* tmpbuffer */
            invokevirtual sun.security.util.HexDumpEncoder.readFully:(Ljava/io/InputStream;[B)I
            istore 4 /* numBytes */
        start local 4 // int numBytes
         3: .line 160
            iload 4 /* numBytes */
            ifne 5
         4: .line 161
            goto 18
         5: .line 163
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top int byte[]
      StackMap stack:
            aload 0 /* this */
            aload 2 /* outStream */
            iload 4 /* numBytes */
            invokevirtual sun.security.util.HexDumpEncoder.encodeLinePrefix:(Ljava/io/OutputStream;I)V
         6: .line 164
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         7: goto 13
         8: .line 166
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream int int byte[]
      StackMap stack:
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            iadd
            iload 4 /* numBytes */
            if_icmpgt 11
         9: .line 167
            aload 0 /* this */
            aload 2 /* outStream */
            aload 5 /* tmpbuffer */
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            invokevirtual sun.security.util.HexDumpEncoder.encodeAtom:(Ljava/io/OutputStream;[BII)V
        10: .line 168
            goto 12
        11: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* outStream */
            aload 5 /* tmpbuffer */
            iload 3 /* j */
            iload 4 /* numBytes */
            iload 3 /* j */
            isub
            invokevirtual sun.security.util.HexDumpEncoder.encodeAtom:(Ljava/io/OutputStream;[BII)V
        12: .line 164
      StackMap locals:
      StackMap stack:
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            iadd
            istore 3 /* j */
      StackMap locals:
      StackMap stack:
        13: iload 3 /* j */
            iload 4 /* numBytes */
            if_icmplt 8
        14: .line 172
            iload 4 /* numBytes */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerLine:()I
            if_icmpge 16
        15: .line 173
            goto 18
        16: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeLineSuffix:(Ljava/io/OutputStream;)V
        end local 4 // int numBytes
        end local 3 // int j
        17: .line 158
            goto 2
        start local 4 // int numBytes
        18: .line 178
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top int byte[]
      StackMap stack:
            return
        end local 5 // byte[] tmpbuffer
        end local 4 // int numBytes
        end local 2 // java.io.OutputStream outStream
        end local 1 // java.io.InputStream inStream
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   19     0       this  Lsun/security/util/HexDumpEncoder;
            0   19     1   inStream  Ljava/io/InputStream;
            0   19     2  outStream  Ljava/io/OutputStream;
            7   17     3          j  I
            3   17     4   numBytes  I
           18   19     4   numBytes  I
            1   19     5  tmpbuffer  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      inStream   
      outStream  

  public java.lang.String encode(byte[]);
    descriptor: ([B)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // byte[] aBuffer
         0: .line 185
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 2 /* outStream */
        start local 2 // java.io.ByteArrayOutputStream outStream
         1: .line 186
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* aBuffer */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 3 /* inStream */
        start local 3 // java.io.ByteArrayInputStream inStream
         2: .line 187
            aconst_null
            astore 4 /* retVal */
        start local 4 // java.lang.String retVal
         3: .line 189
            aload 0 /* this */
            aload 3 /* inStream */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encode:(Ljava/io/InputStream;Ljava/io/OutputStream;)V
         4: .line 191
            aload 2 /* outStream */
            ldc "ISO-8859-1"
            invokevirtual java.io.ByteArrayOutputStream.toString:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* retVal */
         5: .line 192
            goto 8
      StackMap locals: sun.security.util.HexDumpEncoder byte[] java.io.ByteArrayOutputStream java.io.ByteArrayInputStream java.lang.String
      StackMap stack: java.lang.Exception
         6: pop
         7: .line 194
            new java.lang.Error
            dup
            ldc "CharacterEncoder.encode internal error"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 196
      StackMap locals:
      StackMap stack:
            aload 4 /* retVal */
            areturn
        end local 4 // java.lang.String retVal
        end local 3 // java.io.ByteArrayInputStream inStream
        end local 2 // java.io.ByteArrayOutputStream outStream
        end local 1 // byte[] aBuffer
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lsun/security/util/HexDumpEncoder;
            0    9     1    aBuffer  [B
            1    9     2  outStream  Ljava/io/ByteArrayOutputStream;
            2    9     3   inStream  Ljava/io/ByteArrayInputStream;
            3    9     4     retVal  Ljava/lang/String;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      aBuffer  

  private byte[] getBytes(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.nio.ByteBuffer bb
         0: .line 213
            aconst_null
            astore 2 /* buf */
        start local 2 // byte[] buf
         1: .line 219
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 7
         2: .line 220
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 3 /* tmp */
        start local 3 // byte[] tmp
         3: .line 221
            aload 3 /* tmp */
            arraylength
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            if_icmpne 7
         4: .line 222
            aload 3 /* tmp */
            arraylength
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmpne 7
         5: .line 223
            aload 3 /* tmp */
            astore 2 /* buf */
         6: .line 224
            aload 1 /* bb */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        end local 3 // byte[] tmp
         7: .line 228
      StackMap locals: byte[]
      StackMap stack:
            aload 2 /* buf */
            ifnonnull 10
         8: .line 234
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 2 /* buf */
         9: .line 239
            aload 1 /* bb */
            aload 2 /* buf */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        10: .line 242
      StackMap locals:
      StackMap stack:
            aload 2 /* buf */
            areturn
        end local 2 // byte[] buf
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/security/util/HexDumpEncoder;
            0   11     1    bb  Ljava/nio/ByteBuffer;
            1   11     2   buf  [B
            3    7     3   tmp  [B
    MethodParameters:
      Name  Flags
      bb    

  public java.lang.String encode(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.nio.ByteBuffer aBuffer
         0: .line 252
            aload 0 /* this */
            aload 1 /* aBuffer */
            invokevirtual sun.security.util.HexDumpEncoder.getBytes:(Ljava/nio/ByteBuffer;)[B
            astore 2 /* buf */
        start local 2 // byte[] buf
         1: .line 253
            aload 0 /* this */
            aload 2 /* buf */
            invokevirtual sun.security.util.HexDumpEncoder.encode:([B)Ljava/lang/String;
            areturn
        end local 2 // byte[] buf
        end local 1 // java.nio.ByteBuffer aBuffer
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lsun/security/util/HexDumpEncoder;
            0    2     1  aBuffer  Ljava/nio/ByteBuffer;
            1    2     2      buf  [B
    MethodParameters:
         Name  Flags
      aBuffer  

  public void encodeBuffer(java.io.InputStream, java.io.OutputStream);
    descriptor: (Ljava/io/InputStream;Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.io.InputStream inStream
        start local 2 // java.io.OutputStream outStream
         0: .line 267
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerLine:()I
            newarray 8
            astore 5 /* tmpbuffer */
        start local 5 // byte[] tmpbuffer
         1: .line 269
            aload 0 /* this */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeBufferPrefix:(Ljava/io/OutputStream;)V
         2: .line 272
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top top byte[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* inStream */
            aload 5 /* tmpbuffer */
            invokevirtual sun.security.util.HexDumpEncoder.readFully:(Ljava/io/InputStream;[B)I
            istore 4 /* numBytes */
        start local 4 // int numBytes
         3: .line 273
            iload 4 /* numBytes */
            ifne 5
         4: .line 274
            goto 16
         5: .line 276
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top int byte[]
      StackMap stack:
            aload 0 /* this */
            aload 2 /* outStream */
            iload 4 /* numBytes */
            invokevirtual sun.security.util.HexDumpEncoder.encodeLinePrefix:(Ljava/io/OutputStream;I)V
         6: .line 277
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         7: goto 13
         8: .line 278
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream int int byte[]
      StackMap stack:
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            iadd
            iload 4 /* numBytes */
            if_icmpgt 11
         9: .line 279
            aload 0 /* this */
            aload 2 /* outStream */
            aload 5 /* tmpbuffer */
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            invokevirtual sun.security.util.HexDumpEncoder.encodeAtom:(Ljava/io/OutputStream;[BII)V
        10: .line 280
            goto 12
        11: .line 281
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* outStream */
            aload 5 /* tmpbuffer */
            iload 3 /* j */
            iload 4 /* numBytes */
            iload 3 /* j */
            isub
            invokevirtual sun.security.util.HexDumpEncoder.encodeAtom:(Ljava/io/OutputStream;[BII)V
        12: .line 277
      StackMap locals:
      StackMap stack:
            iload 3 /* j */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerAtom:()I
            iadd
            istore 3 /* j */
      StackMap locals:
      StackMap stack:
        13: iload 3 /* j */
            iload 4 /* numBytes */
            if_icmplt 8
        14: .line 284
            aload 0 /* this */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeLineSuffix:(Ljava/io/OutputStream;)V
        15: .line 285
            iload 4 /* numBytes */
            aload 0 /* this */
            invokevirtual sun.security.util.HexDumpEncoder.bytesPerLine:()I
            if_icmpge 2
        end local 3 // int j
        16: .line 289
      StackMap locals: sun.security.util.HexDumpEncoder java.io.InputStream java.io.OutputStream top int byte[]
      StackMap stack:
            return
        end local 5 // byte[] tmpbuffer
        end local 4 // int numBytes
        end local 2 // java.io.OutputStream outStream
        end local 1 // java.io.InputStream inStream
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lsun/security/util/HexDumpEncoder;
            0   17     1   inStream  Ljava/io/InputStream;
            0   17     2  outStream  Ljava/io/OutputStream;
            7   16     3          j  I
            3   17     4   numBytes  I
            1   17     5  tmpbuffer  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      inStream   
      outStream  

  public void encodeBuffer(byte[], java.io.OutputStream);
    descriptor: ([BLjava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // byte[] aBuffer
        start local 2 // java.io.OutputStream aStream
         0: .line 298
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* aBuffer */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 3 /* inStream */
        start local 3 // java.io.ByteArrayInputStream inStream
         1: .line 299
            aload 0 /* this */
            aload 3 /* inStream */
            aload 2 /* aStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/io/InputStream;Ljava/io/OutputStream;)V
         2: .line 300
            return
        end local 3 // java.io.ByteArrayInputStream inStream
        end local 2 // java.io.OutputStream aStream
        end local 1 // byte[] aBuffer
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/security/util/HexDumpEncoder;
            0    3     1   aBuffer  [B
            0    3     2   aStream  Ljava/io/OutputStream;
            1    3     3  inStream  Ljava/io/ByteArrayInputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      aBuffer  
      aStream  

  public java.lang.String encodeBuffer(byte[]);
    descriptor: ([B)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // byte[] aBuffer
         0: .line 307
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 2 /* outStream */
        start local 2 // java.io.ByteArrayOutputStream outStream
         1: .line 308
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* aBuffer */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 3 /* inStream */
        start local 3 // java.io.ByteArrayInputStream inStream
         2: .line 310
            aload 0 /* this */
            aload 3 /* inStream */
            aload 2 /* outStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/io/InputStream;Ljava/io/OutputStream;)V
         3: .line 311
            goto 6
      StackMap locals: sun.security.util.HexDumpEncoder byte[] java.io.ByteArrayOutputStream java.io.ByteArrayInputStream
      StackMap stack: java.lang.Exception
         4: pop
         5: .line 313
            new java.lang.Error
            dup
            ldc "CharacterEncoder.encodeBuffer internal error"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 315
      StackMap locals:
      StackMap stack:
            aload 2 /* outStream */
            invokevirtual java.io.ByteArrayOutputStream.toString:()Ljava/lang/String;
            areturn
        end local 3 // java.io.ByteArrayInputStream inStream
        end local 2 // java.io.ByteArrayOutputStream outStream
        end local 1 // byte[] aBuffer
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/security/util/HexDumpEncoder;
            0    7     1    aBuffer  [B
            1    7     2  outStream  Ljava/io/ByteArrayOutputStream;
            2    7     3   inStream  Ljava/io/ByteArrayInputStream;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      aBuffer  

  public void encodeBuffer(java.nio.ByteBuffer, java.io.OutputStream);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.security.util.HexDumpEncoder this
        start local 1 // java.nio.ByteBuffer aBuffer
        start local 2 // java.io.OutputStream aStream
         0: .line 327
            aload 0 /* this */
            aload 1 /* aBuffer */
            invokevirtual sun.security.util.HexDumpEncoder.getBytes:(Ljava/nio/ByteBuffer;)[B
            astore 3 /* buf */
        start local 3 // byte[] buf
         1: .line 328
            aload 0 /* this */
            aload 3 /* buf */
            aload 2 /* aStream */
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:([BLjava/io/OutputStream;)V
         2: .line 329
            return
        end local 3 // byte[] buf
        end local 2 // java.io.OutputStream aStream
        end local 1 // java.nio.ByteBuffer aBuffer
        end local 0 // sun.security.util.HexDumpEncoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lsun/security/util/HexDumpEncoder;
            0    3     1  aBuffer  Ljava/nio/ByteBuffer;
            0    3     2  aStream  Ljava/io/OutputStream;
            1    3     3      buf  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      aBuffer  
      aStream  
}
SourceFile: "HexDumpEncoder.java"