public class com.jcraft.jsch.jce.TripleDESCBC implements com.jcraft.jsch.Cipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.jcraft.jsch.jce.TripleDESCBC
  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: 24

  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.TripleDESCBC this
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.jcraft.jsch.jce.TripleDESCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/TripleDESCBC;

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

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

  public void init(int, byte[], byte[]);
    descriptor: (I[B[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=10, args_size=4
        start local 0 // com.jcraft.jsch.jce.TripleDESCBC this
        start local 1 // int mode
        start local 2 // byte[] key
        start local 3 // byte[] iv
         0: .line 43
            ldc "NoPadding"
            astore 4 /* pad */
        start local 4 // java.lang.String pad
         1: .line 46
            aload 3 /* iv */
            arraylength
            bipush 8
            if_icmple 5
         2: .line 47
            bipush 8
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
         3: .line 48
            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 49
            aload 5 /* tmp */
            astore 3 /* iv */
        end local 5 // byte[] tmp
         5: .line 51
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* key */
            arraylength
            bipush 24
            if_icmple 9
         6: .line 52
            bipush 24
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
         7: .line 53
            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 54
            aload 5 /* tmp */
            astore 2 /* key */
        end local 5 // byte[] tmp
         9: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "DESede/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.TripleDESCBC.cipher:Ljavax/crypto/Cipher;
        10: .line 67
            new javax.crypto.spec.DESedeKeySpec
            dup
            aload 2 /* key */
            invokespecial javax.crypto.spec.DESedeKeySpec.<init>:([B)V
            astore 6 /* keyspec */
        start local 6 // javax.crypto.spec.DESedeKeySpec keyspec
        11: .line 68
            ldc "DESede"
            invokestatic javax.crypto.SecretKeyFactory.getInstance:(Ljava/lang/String;)Ljavax/crypto/SecretKeyFactory;
            astore 7 /* keyfactory */
        start local 7 // javax.crypto.SecretKeyFactory keyfactory
        12: .line 69
            aload 7 /* keyfactory */
            aload 6 /* keyspec */
            invokevirtual javax.crypto.SecretKeyFactory.generateSecret:(Ljava/security/spec/KeySpec;)Ljavax/crypto/SecretKey;
            astore 8 /* _key */
        start local 8 // javax.crypto.SecretKey _key
        13: .line 70
            ldc Ljavax/crypto/Cipher;
            dup
            astore 9
            monitorenter
        14: .line 71
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.TripleDESCBC.cipher:Ljavax/crypto/Cipher;
            iload 1 /* mode */
            ifne 16
        15: .line 72
            iconst_1
            goto 17
        16: .line 73
      StackMap locals: com.jcraft.jsch.jce.TripleDESCBC int byte[] byte[] java.lang.String top javax.crypto.spec.DESedeKeySpec javax.crypto.SecretKeyFactory javax.crypto.SecretKey java.lang.Class
      StackMap stack: javax.crypto.Cipher
            iconst_2
        17: .line 74
      StackMap locals: com.jcraft.jsch.jce.TripleDESCBC int byte[] byte[] java.lang.String top javax.crypto.spec.DESedeKeySpec javax.crypto.SecretKeyFactory javax.crypto.SecretKey java.lang.Class
      StackMap stack: javax.crypto.Cipher int
            aload 8 /* _key */
            new javax.crypto.spec.IvParameterSpec
            dup
            aload 3 /* iv */
            invokespecial javax.crypto.spec.IvParameterSpec.<init>:([B)V
        18: .line 71
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
        19: .line 70
            aload 9
            monitorexit
        20: goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: aload 9
            monitorexit
        22: athrow
        end local 8 // javax.crypto.SecretKey _key
        end local 7 // javax.crypto.SecretKeyFactory keyfactory
        end local 6 // javax.crypto.spec.DESedeKeySpec keyspec
        23: .line 77
      StackMap locals: com.jcraft.jsch.jce.TripleDESCBC int byte[] byte[] java.lang.String
      StackMap stack: java.lang.Exception
            astore 6 /* e */
        start local 6 // java.lang.Exception e
        24: .line 78
            aload 0 /* this */
            aconst_null
            putfield com.jcraft.jsch.jce.TripleDESCBC.cipher:Ljavax/crypto/Cipher;
        25: .line 79
            aload 6 /* e */
            athrow
        end local 6 // java.lang.Exception e
        26: .line 81
      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.TripleDESCBC this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   27     0        this  Lcom/jcraft/jsch/jce/TripleDESCBC;
            0   27     1        mode  I
            0   27     2         key  [B
            0   27     3          iv  [B
            1   27     4         pad  Ljava/lang/String;
            3    5     5         tmp  [B
            7    9     5         tmp  [B
           11   23     6     keyspec  Ljavax/crypto/spec/DESedeKeySpec;
           12   23     7  keyfactory  Ljavax/crypto/SecretKeyFactory;
           13   23     8        _key  Ljavax/crypto/SecretKey;
           24   26     6           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          14    20      21  any
          21    22      21  any
           9    23      23  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.TripleDESCBC 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 83
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.TripleDESCBC.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 84
            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.TripleDESCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/jce/TripleDESCBC;
            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.TripleDESCBC this
         0: .line 85
            iconst_1
            ireturn
        end local 0 // com.jcraft.jsch.jce.TripleDESCBC this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/TripleDESCBC;
}
SourceFile: "TripleDESCBC.java"