public class com.jcraft.jsch.jce.BlowfishCBC implements com.jcraft.jsch.Cipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.jcraft.jsch.jce.BlowfishCBC
  super_class: java.lang.Object
{
  private static final int ivsize;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  private static final int bsize;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private javax.crypto.Cipher cipher;
    descriptor: Ljavax/crypto/Cipher;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/BlowfishCBC;

  public int getIVSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
         0: .line 39
            bipush 8
            ireturn
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/BlowfishCBC;

  public int getBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
         0: .line 40
            bipush 16
            ireturn
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/BlowfishCBC;

  public void init(int, byte[], byte[]);
    descriptor: (I[B[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
        start local 1 // int mode
        start local 2 // byte[] key
        start local 3 // byte[] iv
         0: .line 42
            ldc "NoPadding"
            astore 4 /* pad */
        start local 4 // java.lang.String pad
         1: .line 45
            aload 3 /* iv */
            arraylength
            bipush 8
            if_icmple 5
         2: .line 46
            bipush 8
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
         3: .line 47
            aload 3 /* iv */
            iconst_0
            aload 5 /* tmp */
            iconst_0
            aload 5 /* tmp */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 48
            aload 5 /* tmp */
            astore 3 /* iv */
        end local 5 // byte[] tmp
         5: .line 50
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* key */
            arraylength
            bipush 16
            if_icmple 9
         6: .line 51
            bipush 16
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
         7: .line 52
            aload 2 /* key */
            iconst_0
            aload 5 /* tmp */
            iconst_0
            aload 5 /* tmp */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 53
            aload 5 /* tmp */
            astore 2 /* key */
        end local 5 // byte[] tmp
         9: .line 56
      StackMap locals:
      StackMap stack:
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 2 /* key */
            ldc "Blowfish"
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BLjava/lang/String;)V
            astore 6 /* skeySpec */
        start local 6 // javax.crypto.spec.SecretKeySpec skeySpec
        10: .line 57
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Blowfish/CBC/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* pad */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            putfield com.jcraft.jsch.jce.BlowfishCBC.cipher:Ljavax/crypto/Cipher;
        11: .line 58
            ldc Ljavax/crypto/Cipher;
            dup
            astore 7
            monitorenter
        12: .line 59
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.BlowfishCBC.cipher:Ljavax/crypto/Cipher;
            iload 1 /* mode */
            ifne 14
        13: .line 60
            iconst_1
            goto 15
        14: .line 61
      StackMap locals: com.jcraft.jsch.jce.BlowfishCBC int byte[] byte[] java.lang.String top javax.crypto.spec.SecretKeySpec java.lang.Class
      StackMap stack: javax.crypto.Cipher
            iconst_2
        15: .line 62
      StackMap locals: com.jcraft.jsch.jce.BlowfishCBC int byte[] byte[] java.lang.String top javax.crypto.spec.SecretKeySpec java.lang.Class
      StackMap stack: javax.crypto.Cipher int
            aload 6 /* skeySpec */
            new javax.crypto.spec.IvParameterSpec
            dup
            aload 3 /* iv */
            invokespecial javax.crypto.spec.IvParameterSpec.<init>:([B)V
        16: .line 59
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
        17: .line 58
            aload 7
            monitorexit
        18: goto 23
      StackMap locals:
      StackMap stack: java.lang.Throwable
        19: aload 7
            monitorexit
        20: athrow
        end local 6 // javax.crypto.spec.SecretKeySpec skeySpec
        21: .line 65
      StackMap locals: com.jcraft.jsch.jce.BlowfishCBC int byte[] byte[] java.lang.String
      StackMap stack: java.lang.Exception
            astore 6 /* e */
        start local 6 // java.lang.Exception e
        22: .line 66
            aload 6 /* e */
            athrow
        end local 6 // java.lang.Exception e
        23: .line 68
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.String pad
        end local 3 // byte[] iv
        end local 2 // byte[] key
        end local 1 // int mode
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lcom/jcraft/jsch/jce/BlowfishCBC;
            0   24     1      mode  I
            0   24     2       key  [B
            0   24     3        iv  [B
            1   24     4       pad  Ljava/lang/String;
            3    5     5       tmp  [B
            7    9     5       tmp  [B
           10   21     6  skeySpec  Ljavax/crypto/spec/SecretKeySpec;
           22   23     6         e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          12    18      19  any
          19    20      19  any
           9    21      21  Class java.lang.Exception
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      mode  
      key   
      iv    

  public void update(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
        start local 1 // byte[] foo
        start local 2 // int s1
        start local 3 // int len
        start local 4 // byte[] bar
        start local 5 // int s2
         0: .line 70
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.BlowfishCBC.cipher:Ljavax/crypto/Cipher;
            aload 1 /* foo */
            iload 2 /* s1 */
            iload 3 /* len */
            aload 4 /* bar */
            iload 5 /* s2 */
            invokevirtual javax.crypto.Cipher.update:([BII[BI)I
            pop
         1: .line 71
            return
        end local 5 // int s2
        end local 4 // byte[] bar
        end local 3 // int len
        end local 2 // int s1
        end local 1 // byte[] foo
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/jce/BlowfishCBC;
            0    2     1   foo  [B
            0    2     2    s1  I
            0    2     3   len  I
            0    2     4   bar  [B
            0    2     5    s2  I
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
      Name  Flags
      foo   
      s1    
      len   
      bar   
      s2    

  public boolean isCBC();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.BlowfishCBC this
         0: .line 72
            iconst_1
            ireturn
        end local 0 // com.jcraft.jsch.jce.BlowfishCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/BlowfishCBC;
}
SourceFile: "BlowfishCBC.java"