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 64
            aload 0 /* this */
            aload 1 /* embeddedCipher */
            invokespecial com.sun.crypto.provider.FeedbackCipher.<init>:(Lcom/sun/crypto/provider/SymmetricCipher;)V
         1: .line 61
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
         2: .line 65
            iload 2 /* numBytes */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmple 4
         3: .line 66
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            istore 2 /* numBytes */
         4: .line 68
      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 69
            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 70
            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 71
            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 79
            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 96
            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 97
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Internal error"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* iv */
            putfield com.sun.crypto.provider.CipherFeedback.iv:[B
         3: .line 100
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.CipherFeedback.reset:()V
         4: .line 102
            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 103
            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 111
            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 112
            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 118
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
            ifnonnull 2
         1: .line 119
            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 121
      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 122
            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 128
            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 129
            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 encrypt(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)V
    flags: (0x0000) 
    Code:
      stack=8, locals=10, 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 158
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            isub
            istore 7 /* len */
        start local 7 // int len
         1: .line 159
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 8 /* loopCount */
        start local 8 // int loopCount
         2: .line 160
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            istore 9 /* oddBytes */
        start local 9 // int oddBytes
         3: .line 162
            iload 7 /* len */
            ifne 37
         4: .line 163
            goto 15
         5: .line 166
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int 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
         6: .line 167
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 12
         8: .line 168
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            aload 4 /* cipher */
            iload 6 /* i */
            iload 5 /* cipherOffset */
            iadd
         9: .line 169
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            aload 1 /* plain */
            iload 6 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
            dup_x2
            bastore
        10: .line 168
            bastore
        11: .line 167
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 6 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmplt 8
        13: .line 164
            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 */
        14: .line 165
            iinc 8 /* loopCount */ -1
        end local 6 // int i
        15: .line 163
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            iload 8 /* loopCount */
            ifgt 5
        16: .line 171
            iload 9 /* oddBytes */
            ifle 48
        17: .line 172
            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
        18: .line 173
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        19: goto 24
        20: .line 174
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            aload 4 /* cipher */
            iload 6 /* i */
            iload 5 /* cipherOffset */
            iadd
        21: .line 175
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            aload 1 /* plain */
            iload 6 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
            dup_x2
            bastore
        22: .line 174
            bastore
        23: .line 173
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 6 /* i */
            iload 9 /* oddBytes */
            if_icmplt 20
        end local 6 // int i
        25: .line 177
            goto 48
        26: .line 181
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int 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
        27: .line 182
            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 7 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 183
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        29: goto 34
        30: .line 184
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            iload 7 /* len */
            iadd
            aload 4 /* cipher */
            iload 6 /* i */
            iload 5 /* cipherOffset */
            iadd
        31: .line 185
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            aload 1 /* plain */
            iload 6 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
            dup_x2
            bastore
        32: .line 184
            bastore
        33: .line 183
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        34: iload 6 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            if_icmplt 30
        35: .line 179
            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 */
        36: .line 180
            iinc 8 /* loopCount */ -1
        end local 6 // int i
        37: .line 178
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            iload 8 /* loopCount */
            ifgt 26
        38: .line 188
            iload 9 /* oddBytes */
            ifeq 48
        39: .line 189
            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
        40: .line 190
            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 7 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        41: .line 191
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        42: goto 47
        43: .line 192
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            iload 7 /* len */
            iadd
            aload 4 /* cipher */
            iload 6 /* i */
            iload 5 /* cipherOffset */
            iadd
        44: .line 193
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            aload 1 /* plain */
            iload 6 /* i */
            iload 2 /* plainOffset */
            iadd
            baload
            ixor
            i2b
            dup_x2
            bastore
        45: .line 192
            bastore
        46: .line 191
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        47: iload 6 /* i */
            iload 9 /* oddBytes */
            if_icmplt 43
        end local 6 // int i
        48: .line 197
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            return
        end local 9 // int oddBytes
        end local 8 // int loopCount
        end local 7 // int len
        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   49     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   49     1         plain  [B
            0   49     2   plainOffset  I
            0   49     3      plainLen  I
            0   49     4        cipher  [B
            0   49     5  cipherOffset  I
            7   15     6             i  I
           19   25     6             i  I
           29   37     6             i  I
           42   48     6             i  I
            1   49     7           len  I
            2   49     8     loopCount  I
            3   49     9      oddBytes  I
    MethodParameters:
              Name  Flags
      plain         
      plainOffset   
      plainLen      
      cipher        
      cipherOffset  

  void decrypt(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, 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 226
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            isub
            istore 7 /* len */
        start local 7 // int len
         1: .line 227
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 8 /* loopCount */
        start local 8 // int loopCount
         2: .line 228
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            istore 9 /* oddBytes */
        start local 9 // int oddBytes
         3: .line 230
            iload 7 /* len */
            ifne 40
         4: .line 231
            goto 16
         5: .line 234
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int 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
         6: .line 235
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 13
         8: .line 236
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            bastore
         9: .line 237
            aload 4 /* plain */
            iload 6 /* i */
            iload 5 /* plainOffset */
            iadd
        10: .line 238
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            ixor
            i2b
        11: .line 237
            bastore
        12: .line 235
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmplt 8
        14: .line 232
            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 */
        15: .line 233
            iinc 8 /* loopCount */ -1
        end local 6 // int i
        16: .line 231
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            iload 8 /* loopCount */
            ifgt 5
        17: .line 241
            iload 9 /* oddBytes */
            ifle 52
        18: .line 242
            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
        19: .line 243
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        20: goto 26
        21: .line 244
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            bastore
        22: .line 245
            aload 4 /* plain */
            iload 6 /* i */
            iload 5 /* plainOffset */
            iadd
        23: .line 246
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            ixor
            i2b
        24: .line 245
            bastore
        25: .line 243
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 6 /* i */
            iload 9 /* oddBytes */
            if_icmplt 21
        end local 6 // int i
        27: .line 249
            goto 52
        28: .line 253
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int 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
        29: .line 254
            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 7 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        30: .line 255
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        31: goto 37
        32: .line 256
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            iload 7 /* len */
            iadd
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            bastore
        33: .line 257
            aload 4 /* plain */
            iload 6 /* i */
            iload 5 /* plainOffset */
            iadd
        34: .line 258
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            ixor
            i2b
        35: .line 257
            bastore
        36: .line 255
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        37: iload 6 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            if_icmplt 32
        38: .line 251
            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 */
        39: .line 252
            iinc 8 /* loopCount */ -1
        end local 6 // int i
        40: .line 250
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            iload 8 /* loopCount */
            ifgt 28
        41: .line 261
            iload 9 /* oddBytes */
            ifeq 52
        42: .line 262
            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
        43: .line 263
            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 7 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        44: .line 264
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        45: goto 51
        46: .line 265
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.register:[B
            iload 6 /* i */
            iload 7 /* len */
            iadd
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            bastore
        47: .line 266
            aload 4 /* plain */
            iload 6 /* i */
            iload 5 /* plainOffset */
            iadd
        48: .line 267
            aload 1 /* cipher */
            iload 6 /* i */
            iload 2 /* cipherOffset */
            iadd
            baload
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.k:[B
            iload 6 /* i */
            baload
            ixor
            i2b
        49: .line 266
            bastore
        50: .line 264
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        51: iload 6 /* i */
            iload 9 /* oddBytes */
            if_icmplt 46
        end local 6 // int i
        52: .line 271
      StackMap locals: com.sun.crypto.provider.CipherFeedback byte[] int int byte[] int top int int int
      StackMap stack:
            return
        end local 9 // int oddBytes
        end local 8 // int loopCount
        end local 7 // int len
        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   53     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   53     1        cipher  [B
            0   53     2  cipherOffset  I
            0   53     3     cipherLen  I
            0   53     4         plain  [B
            0   53     5   plainOffset  I
            7   16     6             i  I
           20   27     6             i  I
           31   40     6             i  I
           45   52     6             i  I
            1   53     7           len  I
            2   53     8     loopCount  I
            3   53     9      oddBytes  I
    MethodParameters:
              Name  Flags
      cipher        
      cipherOffset  
      cipherLen     
      plain         
      plainOffset   
}
SourceFile: "CipherFeedback.java"