final class com.sun.crypto.provider.CipherFeedback extends com.sun.crypto.provider.FeedbackCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.crypto.provider.CipherFeedback
  super_class: com.sun.crypto.provider.FeedbackCipher
{
  private final byte[] k;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] register;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  void <init>(com.sun.crypto.provider.SymmetricCipher, int);
    descriptor: (Lcom/sun/crypto/provider/SymmetricCipher;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // com.sun.crypto.provider.SymmetricCipher embeddedCipher
        start local 2 // int numBytes
         0: .line 66
            aload 0 /* this */
            aload 1 /* embeddedCipher */
            invokespecial com.sun.crypto.provider.FeedbackCipher.<init>:(Lcom/sun/crypto/provider/SymmetricCipher;)V
         1: .line 63
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
         2: .line 67
            iload 2 /* numBytes */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmple 4
         3: .line 68
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            istore 2 /* numBytes */
         4: .line 70
      StackMap locals: com.sun.crypto.provider.CipherFeedback com.sun.crypto.provider.SymmetricCipher int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* numBytes */
            putfield com.sun.crypto.provider.CipherFeedback.numBytes:I
         5: .line 71
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            newarray 8
            putfield com.sun.crypto.provider.CipherFeedback.k:[B
         6: .line 72
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            newarray 8
            putfield com.sun.crypto.provider.CipherFeedback.register:[B
         7: .line 73
            return
        end local 2 // int numBytes
        end local 1 // com.sun.crypto.provider.SymmetricCipher embeddedCipher
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lcom/sun/crypto/provider/CipherFeedback;
            0    8     1  embeddedCipher  Lcom/sun/crypto/provider/SymmetricCipher;
            0    8     2        numBytes  I
    MethodParameters:
                Name  Flags
      embeddedCipher  
      numBytes        

  java.lang.String getFeedback();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.CipherFeedback this
         0: .line 81
            ldc "CFB"
            areturn
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/CipherFeedback;

  void init(boolean, java.lang.String, byte[], byte[]);
    descriptor: (ZLjava/lang/String;[B[B)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // boolean decrypting
        start local 2 // java.lang.String algorithm
        start local 3 // byte[] key
        start local 4 // byte[] iv
         0: .line 98
            aload 3 /* key */
            ifnull 1
            aload 4 /* iv */
            ifnull 1
            aload 4 /* iv */
            arraylength
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmpeq 2
         1: .line 99
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Internal error"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* iv */
            putfield com.sun.crypto.provider.CipherFeedback.iv:[B
         3: .line 102
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.CipherFeedback.reset:()V
         4: .line 104
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.embeddedCipher:Lcom/sun/crypto/provider/SymmetricCipher;
            iconst_0
            aload 2 /* algorithm */
            aload 3 /* key */
            invokevirtual com.sun.crypto.provider.SymmetricCipher.init:(ZLjava/lang/String;[B)V
         5: .line 105
            return
        end local 4 // byte[] iv
        end local 3 // byte[] key
        end local 2 // java.lang.String algorithm
        end local 1 // boolean decrypting
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lcom/sun/crypto/provider/CipherFeedback;
            0    6     1  decrypting  Z
            0    6     2   algorithm  Ljava/lang/String;
            0    6     3         key  [B
            0    6     4          iv  [B
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
            Name  Flags
      decrypting  
      algorithm   
      key         
      iv          

  void reset();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.CipherFeedback this
         0: .line 113
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.iv:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 114
            return
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/crypto/provider/CipherFeedback;

  void save();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.CipherFeedback this
         0: .line 120
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
            ifnonnull 2
         1: .line 121
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            newarray 8
            putfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
         2: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 124
            return
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/crypto/provider/CipherFeedback;

  void restore();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.CipherFeedback this
         0: .line 130
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 131
            return
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/crypto/provider/CipherFeedback;

  int encrypt(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0000) 
    Code:
      stack=8, locals=9, args_size=6
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // byte[] plain
        start local 2 // int plainOffset
        start local 3 // int plainLen
        start local 4 // byte[] cipher
        start local 5 // int cipherOffset
         0: .line 153
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            invokestatic sun.security.util.ArrayUtil.blockSizeCheck:(II)V
         1: .line 154
            aload 1 /* plain */
            iload 2 /* plainOffset */
            iload 3 /* plainLen */
            invokestatic sun.security.util.ArrayUtil.nullAndBoundsCheck:([BII)V
         2: .line 155
            aload 4 /* cipher */
            iload 5 /* cipherOffset */
            iload 3 /* plainLen */
            invokestatic sun.security.util.ArrayUtil.nullAndBoundsCheck:([BII)V
         3: .line 157
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            isub
            istore 6 /* nShift */
        start local 6 // int nShift
         4: .line 158
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 7 /* loopCount */
        start local 7 // int loopCount
         5: .line 160
            goto 18
         6: .line 163
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.embeddedCipher:Lcom/sun/crypto/provider/SymmetricCipher;
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iconst_0
            invokevirtual com.sun.crypto.provider.SymmetricCipher.encryptBlock:([BI[BI)V
         7: .line 164
            iload 6 /* nShift */
            ifeq 9
         8: .line 165
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            iload 6 /* nShift */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 167
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        10: goto 15
        11: .line 168
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* nShift */
            iload 8 /* i */
            iadd
            aload 4 /* cipher */
            iload 8 /* i */
            iload 5 /* cipherOffset */
            iadd
        12: .line 169
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 8 /* i */
            baload
            aload 1 /* plain */
            iload 8 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
            dup_x2
            bastore
        13: .line 168
            bastore
        14: .line 167
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 8 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            if_icmplt 11
        end local 8 // int i
        16: .line 161
            iload 2 /* plainOffset */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            iadd
            istore 2 /* plainOffset */
            iload 5 /* cipherOffset */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            iadd
            istore 5 /* cipherOffset */
        17: .line 162
            iinc 7 /* loopCount */ -1
        18: .line 160
      StackMap locals:
      StackMap stack:
            iload 7 /* loopCount */
            ifgt 6
        19: .line 172
            iload 3 /* plainLen */
            ireturn
        end local 7 // int loopCount
        end local 6 // int nShift
        end local 5 // int cipherOffset
        end local 4 // byte[] cipher
        end local 3 // int plainLen
        end local 2 // int plainOffset
        end local 1 // byte[] plain
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   20     1         plain  [B
            0   20     2   plainOffset  I
            0   20     3      plainLen  I
            0   20     4        cipher  [B
            0   20     5  cipherOffset  I
            4   20     6        nShift  I
            5   20     7     loopCount  I
           10   16     8             i  I
    MethodParameters:
              Name  Flags
      plain         
      plainOffset   
      plainLen      
      cipher        
      cipherOffset  

  int encryptFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0000) 
    Code:
      stack=6, locals=9, args_size=6
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // byte[] plain
        start local 2 // int plainOffset
        start local 3 // int plainLen
        start local 4 // byte[] cipher
        start local 5 // int cipherOffset
         0: .line 194
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            istore 6 /* oddBytes */
        start local 6 // int oddBytes
         1: .line 195
            aload 0 /* this */
            aload 1 /* plain */
            iload 2 /* plainOffset */
            iload 3 /* plainLen */
            iload 6 /* oddBytes */
            isub
         2: .line 196
            aload 4 /* cipher */
            iload 5 /* cipherOffset */
         3: .line 195
            invokevirtual com.sun.crypto.provider.CipherFeedback.encrypt:([BII[BI)I
            istore 7 /* len */
        start local 7 // int len
         4: .line 197
            iload 2 /* plainOffset */
            iload 7 /* len */
            iadd
            istore 2 /* plainOffset */
         5: .line 198
            iload 5 /* cipherOffset */
            iload 7 /* len */
            iadd
            istore 5 /* cipherOffset */
         6: .line 199
            iload 6 /* oddBytes */
            ifeq 15
         7: .line 200
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.embeddedCipher:Lcom/sun/crypto/provider/SymmetricCipher;
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iconst_0
            invokevirtual com.sun.crypto.provider.SymmetricCipher.encryptBlock:([BI[BI)V
         8: .line 201
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 14
        10: .line 202
      StackMap locals: int int int
      StackMap stack:
            aload 4 /* cipher */
            iload 8 /* i */
            iload 5 /* cipherOffset */
            iadd
        11: .line 203
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 8 /* i */
            baload
            aload 1 /* plain */
            iload 8 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
        12: .line 202
            bastore
        13: .line 201
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 8 /* i */
            iload 6 /* oddBytes */
            if_icmplt 10
        end local 8 // int i
        15: .line 206
      StackMap locals:
      StackMap stack:
            iload 3 /* plainLen */
            ireturn
        end local 7 // int len
        end local 6 // int oddBytes
        end local 5 // int cipherOffset
        end local 4 // byte[] cipher
        end local 3 // int plainLen
        end local 2 // int plainOffset
        end local 1 // byte[] plain
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   16     1         plain  [B
            0   16     2   plainOffset  I
            0   16     3      plainLen  I
            0   16     4        cipher  [B
            0   16     5  cipherOffset  I
            1   16     6      oddBytes  I
            4   16     7           len  I
            9   15     8             i  I
    MethodParameters:
              Name  Flags
      plain         
      plainOffset   
      plainLen      
      cipher        
      cipherOffset  

  int decrypt(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // byte[] cipher
        start local 2 // int cipherOffset
        start local 3 // int cipherLen
        start local 4 // byte[] plain
        start local 5 // int plainOffset
         0: .line 230
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            invokestatic sun.security.util.ArrayUtil.blockSizeCheck:(II)V
         1: .line 231
            aload 1 /* cipher */
            iload 2 /* cipherOffset */
            iload 3 /* cipherLen */
            invokestatic sun.security.util.ArrayUtil.nullAndBoundsCheck:([BII)V
         2: .line 232
            aload 4 /* plain */
            iload 5 /* plainOffset */
            iload 3 /* cipherLen */
            invokestatic sun.security.util.ArrayUtil.nullAndBoundsCheck:([BII)V
         3: .line 234
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            isub
            istore 6 /* nShift */
        start local 6 // int nShift
         4: .line 235
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 7 /* loopCount */
        start local 7 // int loopCount
         5: .line 237
            goto 19
         6: .line 240
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.embeddedCipher:Lcom/sun/crypto/provider/SymmetricCipher;
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iconst_0
            invokevirtual com.sun.crypto.provider.SymmetricCipher.encryptBlock:([BI[BI)V
         7: .line 241
            iload 6 /* nShift */
            ifeq 9
         8: .line 242
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            iload 6 /* nShift */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 244
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        10: goto 16
        11: .line 245
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 8 /* i */
            iload 6 /* nShift */
            iadd
            aload 1 /* cipher */
            iload 8 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            bastore
        12: .line 246
            aload 4 /* plain */
            iload 8 /* i */
            iload 5 /* plainOffset */
            iadd
        13: .line 247
            aload 1 /* cipher */
            iload 8 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 8 /* i */
            baload
            ixor
            i2b
        14: .line 246
            bastore
        15: .line 244
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 8 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            if_icmplt 11
        end local 8 // int i
        17: .line 238
            iload 5 /* plainOffset */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            iadd
            istore 5 /* plainOffset */
            iload 2 /* cipherOffset */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            iadd
            istore 2 /* cipherOffset */
        18: .line 239
            iinc 7 /* loopCount */ -1
        19: .line 237
      StackMap locals:
      StackMap stack:
            iload 7 /* loopCount */
            ifgt 6
        20: .line 250
            iload 3 /* cipherLen */
            ireturn
        end local 7 // int loopCount
        end local 6 // int nShift
        end local 5 // int plainOffset
        end local 4 // byte[] plain
        end local 3 // int cipherLen
        end local 2 // int cipherOffset
        end local 1 // byte[] cipher
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   21     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   21     1        cipher  [B
            0   21     2  cipherOffset  I
            0   21     3     cipherLen  I
            0   21     4         plain  [B
            0   21     5   plainOffset  I
            4   21     6        nShift  I
            5   21     7     loopCount  I
           10   17     8             i  I
    MethodParameters:
              Name  Flags
      cipher        
      cipherOffset  
      cipherLen     
      plain         
      plainOffset   

  int decryptFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0000) 
    Code:
      stack=6, locals=9, args_size=6
        start local 0 // com.sun.crypto.provider.CipherFeedback this
        start local 1 // byte[] cipher
        start local 2 // int cipherOffset
        start local 3 // int cipherLen
        start local 4 // byte[] plain
        start local 5 // int plainOffset
         0: .line 272
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            istore 6 /* oddBytes */
        start local 6 // int oddBytes
         1: .line 273
            aload 0 /* this */
            aload 1 /* cipher */
            iload 2 /* cipherOffset */
            iload 3 /* cipherLen */
            iload 6 /* oddBytes */
            isub
         2: .line 274
            aload 4 /* plain */
            iload 5 /* plainOffset */
         3: .line 273
            invokevirtual com.sun.crypto.provider.CipherFeedback.decrypt:([BII[BI)I
            istore 7 /* len */
        start local 7 // int len
         4: .line 275
            iload 2 /* cipherOffset */
            iload 7 /* len */
            iadd
            istore 2 /* cipherOffset */
         5: .line 276
            iload 5 /* plainOffset */
            iload 7 /* len */
            iadd
            istore 5 /* plainOffset */
         6: .line 277
            iload 6 /* oddBytes */
            ifeq 15
         7: .line 278
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.embeddedCipher:Lcom/sun/crypto/provider/SymmetricCipher;
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iconst_0
            invokevirtual com.sun.crypto.provider.SymmetricCipher.encryptBlock:([BI[BI)V
         8: .line 279
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 14
        10: .line 280
      StackMap locals: int int int
      StackMap stack:
            aload 4 /* plain */
            iload 8 /* i */
            iload 5 /* plainOffset */
            iadd
        11: .line 281
            aload 1 /* cipher */
            iload 8 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 8 /* i */
            baload
            ixor
            i2b
        12: .line 280
            bastore
        13: .line 279
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 8 /* i */
            iload 6 /* oddBytes */
            if_icmplt 10
        end local 8 // int i
        15: .line 284
      StackMap locals:
      StackMap stack:
            iload 3 /* cipherLen */
            ireturn
        end local 7 // int len
        end local 6 // int oddBytes
        end local 5 // int plainOffset
        end local 4 // byte[] plain
        end local 3 // int cipherLen
        end local 2 // int cipherOffset
        end local 1 // byte[] cipher
        end local 0 // com.sun.crypto.provider.CipherFeedback this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   16     1        cipher  [B
            0   16     2  cipherOffset  I
            0   16     3     cipherLen  I
            0   16     4         plain  [B
            0   16     5   plainOffset  I
            1   16     6      oddBytes  I
            4   16     7           len  I
            9   15     8             i  I
    MethodParameters:
              Name  Flags
      cipher        
      cipherOffset  
      cipherLen     
      plain         
      plainOffset   
}
SourceFile: "CipherFeedback.java"