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 65
            aload 0 /* this */
            aload 1 /* embeddedCipher */
            invokespecial com.sun.crypto.provider.FeedbackCipher.<init>:(Lcom/sun/crypto/provider/SymmetricCipher;)V
         1: .line 62
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
         2: .line 66
            iload 2 /* numBytes */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            if_icmple 4
         3: .line 67
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.blockSize:I
            istore 2 /* numBytes */
         4: .line 69
      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 70
            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 71
            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 72
            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 80
            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 97
            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 98
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Internal error"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* iv */
            putfield com.sun.crypto.provider.CipherFeedback.iv:[B
         3: .line 101
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.CipherFeedback.reset:()V
         4: .line 103
            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 104
            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 112
            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 113
            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 119
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.registerSave:[B
            ifnonnull 2
         1: .line 120
            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 122
      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 123
            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 129
            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 130
            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 152
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            ifeq 2
         1: .line 153
            new java.security.ProviderException
            dup
            ldc "Internal error in input buffering"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 156
      StackMap locals:
      StackMap stack:
            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
         3: .line 157
            iload 3 /* plainLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 7 /* loopCount */
        start local 7 // int loopCount
         4: .line 159
            goto 17
         5: .line 162
      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
         6: .line 163
            iload 6 /* nShift */
            ifeq 8
         7: .line 164
            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
         8: .line 166
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 14
        10: .line 167
      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
        11: .line 168
            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
        12: .line 167
            bastore
        13: .line 166
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 8 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            if_icmplt 10
        end local 8 // int i
        15: .line 160
            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 */
        16: .line 161
            iinc 7 /* loopCount */ -1
        17: .line 159
      StackMap locals:
      StackMap stack:
            iload 7 /* loopCount */
            ifgt 5
        18: .line 171
            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   19     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   19     1         plain  [B
            0   19     2   plainOffset  I
            0   19     3      plainLen  I
            0   19     4        cipher  [B
            0   19     5  cipherOffset  I
            3   19     6        nShift  I
            4   19     7     loopCount  I
            9   15     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 193
            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 194
            aload 0 /* this */
            aload 1 /* plain */
            iload 2 /* plainOffset */
            iload 3 /* plainLen */
            iload 6 /* oddBytes */
            isub
         2: .line 195
            aload 4 /* cipher */
            iload 5 /* cipherOffset */
         3: .line 194
            invokevirtual com.sun.crypto.provider.CipherFeedback.encrypt:([BII[BI)I
            istore 7 /* len */
        start local 7 // int len
         4: .line 196
            iload 2 /* plainOffset */
            iload 7 /* len */
            iadd
            istore 2 /* plainOffset */
         5: .line 197
            iload 5 /* cipherOffset */
            iload 7 /* len */
            iadd
            istore 5 /* cipherOffset */
         6: .line 198
            iload 6 /* oddBytes */
            ifeq 15
         7: .line 199
            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 200
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 14
        10: .line 201
      StackMap locals: int int int
      StackMap stack:
            aload 4 /* cipher */
            iload 8 /* i */
            iload 5 /* cipherOffset */
            iadd
        11: .line 202
            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 201
            bastore
        13: .line 200
            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 205
      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 228
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            irem
            ifeq 2
         1: .line 229
            new java.security.ProviderException
            dup
            ldc "Internal error in input buffering"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 232
      StackMap locals:
      StackMap stack:
            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
         3: .line 233
            iload 3 /* cipherLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.CipherFeedback.numBytes:I
            idiv
            istore 7 /* loopCount */
        start local 7 // int loopCount
         4: .line 235
            goto 18
         5: .line 238
      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
         6: .line 239
            iload 6 /* nShift */
            ifeq 8
         7: .line 240
            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
         8: .line 242
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 15
        10: .line 243
      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
        11: .line 244
            aload 4 /* plain */
            iload 8 /* i */
            iload 5 /* plainOffset */
            iadd
        12: .line 245
            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
        13: .line 244
            bastore
        14: .line 242
            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 10
        end local 8 // int i
        16: .line 236
            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 */
        17: .line 237
            iinc 7 /* loopCount */ -1
        18: .line 235
      StackMap locals:
      StackMap stack:
            iload 7 /* loopCount */
            ifgt 5
        19: .line 248
            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   20     0          this  Lcom/sun/crypto/provider/CipherFeedback;
            0   20     1        cipher  [B
            0   20     2  cipherOffset  I
            0   20     3     cipherLen  I
            0   20     4         plain  [B
            0   20     5   plainOffset  I
            3   20     6        nShift  I
            4   20     7     loopCount  I
            9   16     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 270
            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 271
            aload 0 /* this */
            aload 1 /* cipher */
            iload 2 /* cipherOffset */
            iload 3 /* cipherLen */
            iload 6 /* oddBytes */
            isub
         2: .line 272
            aload 4 /* plain */
            iload 5 /* plainOffset */
         3: .line 271
            invokevirtual com.sun.crypto.provider.CipherFeedback.decrypt:([BII[BI)I
            istore 7 /* len */
        start local 7 // int len
         4: .line 273
            iload 2 /* cipherOffset */
            iload 7 /* len */
            iadd
            istore 2 /* cipherOffset */
         5: .line 274
            iload 5 /* plainOffset */
            iload 7 /* len */
            iadd
            istore 5 /* plainOffset */
         6: .line 275
            iload 6 /* oddBytes */
            ifeq 15
         7: .line 276
            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 277
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 14
        10: .line 278
      StackMap locals: int int int
      StackMap stack:
            aload 4 /* plain */
            iload 8 /* i */
            iload 5 /* plainOffset */
            iadd
        11: .line 279
            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 278
            bastore
        13: .line 277
            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 282
      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"