public class javax.crypto.Cipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.crypto.Cipher
  super_class: java.lang.Object
{
  private static final sun.security.util.Debug debug;
    descriptor: Lsun/security/util/Debug;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  public static final int ENCRYPT_MODE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int DECRYPT_MODE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int WRAP_MODE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  public static final int UNWRAP_MODE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public static final int PUBLIC_KEY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int PRIVATE_KEY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int SECRET_KEY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private java.security.Provider provider;
    descriptor: Ljava/security/Provider;
    flags: (0x0002) ACC_PRIVATE

  private javax.crypto.CipherSpi spi;
    descriptor: Ljavax/crypto/CipherSpi;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String transformation;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private javax.crypto.CryptoPermission cryptoPerm;
    descriptor: Ljavax/crypto/CryptoPermission;
    flags: (0x0002) ACC_PRIVATE

  private javax.crypto.ExemptionMechanism exmech;
    descriptor: Ljavax/crypto/ExemptionMechanism;
    flags: (0x0002) ACC_PRIVATE

  private boolean initialized;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  private static final java.lang.String KEY_USAGE_EXTENSION_OID;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "2.5.29.15"

  private javax.crypto.CipherSpi firstSpi;
    descriptor: Ljavax/crypto/CipherSpi;
    flags: (0x0002) ACC_PRIVATE

  private java.security.Provider$Service firstService;
    descriptor: Ljava/security/Provider$Service;
    flags: (0x0002) ACC_PRIVATE

  private java.util.Iterator<java.security.Provider$Service> serviceIterator;
    descriptor: Ljava/util/Iterator;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Iterator<Ljava/security/Provider$Service;>;

  private java.util.List<javax.crypto.Cipher$Transform> transforms;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;

  private final java.lang.Object lock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.lang.String ATTR_MODE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "SupportedModes"

  private static final java.lang.String ATTR_PAD;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "SupportedPaddings"

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

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

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

  private static int warnCount;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 100
            ldc "jca"
            ldc "Cipher"
            invokestatic sun.security.util.Debug.getInstance:(Ljava/lang/String;Ljava/lang/String;)Lsun/security/util/Debug;
         1: .line 99
            putstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
         2: .line 639
            bipush 10
            putstatic javax.crypto.Cipher.warnCount:I
         3: .line 723
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(javax.crypto.CipherSpi, java.security.Provider, java.lang.String);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Provider;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi cipherSpi
        start local 2 // java.security.Provider provider
        start local 3 // java.lang.String transformation
         0: .line 189
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 156
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 160
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 195
            getstatic javax.crypto.JceSecurityManager.INSTANCE:Ljavax/crypto/JceSecurityManager;
            invokevirtual javax.crypto.JceSecurityManager.isCallerTrusted:()Z
            ifne 5
         4: .line 196
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         5: .line 198
      StackMap locals: javax.crypto.Cipher javax.crypto.CipherSpi java.security.Provider java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cipherSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
         6: .line 199
            aload 0 /* this */
            aload 2 /* provider */
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
         7: .line 200
            aload 0 /* this */
            aload 3 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         8: .line 201
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         9: .line 202
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
        10: .line 203
            return
        end local 3 // java.lang.String transformation
        end local 2 // java.security.Provider provider
        end local 1 // javax.crypto.CipherSpi cipherSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0            this  Ljavax/crypto/Cipher;
            0   11     1       cipherSpi  Ljavax/crypto/CipherSpi;
            0   11     2        provider  Ljava/security/Provider;
            0   11     3  transformation  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      cipherSpi       
      provider        
      transformation  

  void <init>(javax.crypto.CipherSpi, java.lang.String);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi cipherSpi
        start local 2 // java.lang.String transformation
         0: .line 211
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 156
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 160
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 212
            aload 0 /* this */
            aload 1 /* cipherSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
         4: .line 213
            aload 0 /* this */
            aload 2 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         5: .line 214
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         6: .line 215
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
         7: .line 216
            return
        end local 2 // java.lang.String transformation
        end local 1 // javax.crypto.CipherSpi cipherSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Ljavax/crypto/Cipher;
            0    8     1       cipherSpi  Ljavax/crypto/CipherSpi;
            0    8     2  transformation  Ljava/lang/String;
    MethodParameters:
                Name  Flags
      cipherSpi       
      transformation  

  private void <init>(javax.crypto.CipherSpi, java.security.Provider$Service, java.util.Iterator<java.security.Provider$Service>, java.lang.String, java.util.List<javax.crypto.Cipher$Transform>);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Provider$Service;Ljava/util/Iterator;Ljava/lang/String;Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi firstSpi
        start local 2 // java.security.Provider$Service firstService
        start local 3 // java.util.Iterator serviceIterator
        start local 4 // java.lang.String transformation
        start local 5 // java.util.List transforms
         0: .line 218
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 156
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 160
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 221
            aload 0 /* this */
            aload 1 /* firstSpi */
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
         4: .line 222
            aload 0 /* this */
            aload 2 /* firstService */
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
         5: .line 223
            aload 0 /* this */
            aload 3 /* serviceIterator */
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
         6: .line 224
            aload 0 /* this */
            aload 5 /* transforms */
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
         7: .line 225
            aload 0 /* this */
            aload 4 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         8: .line 226
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
         9: .line 227
            return
        end local 5 // java.util.List transforms
        end local 4 // java.lang.String transformation
        end local 3 // java.util.Iterator serviceIterator
        end local 2 // java.security.Provider$Service firstService
        end local 1 // javax.crypto.CipherSpi firstSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Ljavax/crypto/Cipher;
            0   10     1         firstSpi  Ljavax/crypto/CipherSpi;
            0   10     2     firstService  Ljava/security/Provider$Service;
            0   10     3  serviceIterator  Ljava/util/Iterator<Ljava/security/Provider$Service;>;
            0   10     4   transformation  Ljava/lang/String;
            0   10     5       transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
    Signature: (Ljavax/crypto/CipherSpi;Ljava/security/Provider$Service;Ljava/util/Iterator<Ljava/security/Provider$Service;>;Ljava/lang/String;Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;)V
    MethodParameters:
                 Name  Flags
      firstSpi         
      firstService     
      serviceIterator  
      transformation   
      transforms       

  private static java.lang.String[] tokenizeTransformation(java.lang.String);
    descriptor: (Ljava/lang/String;)[Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 231
            aload 0 /* transformation */
            ifnonnull 2
         1: .line 232
            new java.security.NoSuchAlgorithmException
            dup
            ldc "No transformation given"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 241
      StackMap locals:
      StackMap stack:
            iconst_3
            anewarray java.lang.String
            astore 1 /* parts */
        start local 1 // java.lang.String[] parts
         3: .line 242
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         4: .line 243
            new java.util.StringTokenizer
            dup
            aload 0 /* transformation */
            ldc "/"
            invokespecial java.util.StringTokenizer.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 3 /* parser */
        start local 3 // java.util.StringTokenizer parser
         5: .line 245
            goto 7
         6: .line 246
      StackMap locals: java.lang.String[] int java.util.StringTokenizer
      StackMap stack:
            aload 1 /* parts */
            iload 2 /* count */
            iinc 2 /* count */ 1
            aload 3 /* parser */
            invokevirtual java.util.StringTokenizer.nextToken:()Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            aastore
         7: .line 245
      StackMap locals:
      StackMap stack:
            aload 3 /* parser */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifeq 8
            iload 2 /* count */
            iconst_3
            if_icmplt 6
         8: .line 248
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ifeq 9
            iload 2 /* count */
            iconst_2
            if_icmpeq 9
            aload 3 /* parser */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifeq 16
         9: .line 249
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid transformation format:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        10: .line 251
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 249
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 253
      StackMap locals:
      StackMap stack: java.util.NoSuchElementException
            pop
        13: .line 254
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid transformation format:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        14: .line 255
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        15: .line 254
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 257
      StackMap locals:
      StackMap stack:
            aload 1 /* parts */
            iconst_0
            aaload
            ifnull 17
            aload 1 /* parts */
            iconst_0
            aaload
            invokevirtual java.lang.String.length:()I
            ifne 20
        17: .line 258
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid transformation:algorithm not specified-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        18: .line 260
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        19: .line 258
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 262
      StackMap locals:
      StackMap stack:
            aload 1 /* parts */
            areturn
        end local 3 // java.util.StringTokenizer parser
        end local 2 // int count
        end local 1 // java.lang.String[] parts
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   21     0  transformation  Ljava/lang/String;
            3   21     1           parts  [Ljava/lang/String;
            4   21     2           count  I
            5   21     3          parser  Ljava/util/StringTokenizer;
      Exception table:
        from    to  target  type
           5    12      12  Class java.util.NoSuchElementException
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
                Name  Flags
      transformation  

  private static java.util.List<javax.crypto.Cipher$Transform> getTransforms(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=6, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 356
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.tokenizeTransformation:(Ljava/lang/String;)[Ljava/lang/String;
            astore 1 /* parts */
        start local 1 // java.lang.String[] parts
         1: .line 358
            aload 1 /* parts */
            iconst_0
            aaload
            astore 2 /* alg */
        start local 2 // java.lang.String alg
         2: .line 359
            aload 1 /* parts */
            iconst_1
            aaload
            astore 3 /* mode */
        start local 3 // java.lang.String mode
         3: .line 360
            aload 1 /* parts */
            iconst_2
            aaload
            astore 4 /* pad */
        start local 4 // java.lang.String pad
         4: .line 361
            aload 3 /* mode */
            ifnull 6
            aload 3 /* mode */
            invokevirtual java.lang.String.length:()I
            ifne 6
         5: .line 362
            aconst_null
            astore 3 /* mode */
         6: .line 364
      StackMap locals: java.lang.String java.lang.String[] java.lang.String java.lang.String java.lang.String
      StackMap stack:
            aload 4 /* pad */
            ifnull 8
            aload 4 /* pad */
            invokevirtual java.lang.String.length:()I
            ifne 8
         7: .line 365
            aconst_null
            astore 4 /* pad */
         8: .line 368
      StackMap locals:
      StackMap stack:
            aload 3 /* mode */
            ifnonnull 11
            aload 4 /* pad */
            ifnonnull 11
         9: .line 370
            new javax.crypto.Cipher$Transform
            dup
            aload 2 /* alg */
            ldc ""
            aconst_null
            aconst_null
            invokespecial javax.crypto.Cipher$Transform.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            astore 5 /* tr */
        start local 5 // javax.crypto.Cipher$Transform tr
        10: .line 371
            aload 5 /* tr */
            invokestatic java.util.Collections.singletonList:(Ljava/lang/Object;)Ljava/util/List;
            areturn
        end local 5 // javax.crypto.Cipher$Transform tr
        11: .line 374
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            iconst_4
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 5 /* list */
        start local 5 // java.util.List list
        12: .line 375
            aload 5 /* list */
            new javax.crypto.Cipher$Transform
            dup
            aload 2 /* alg */
            new java.lang.StringBuilder
            dup
            ldc "/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* mode */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "/"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* pad */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
            aconst_null
            invokespecial javax.crypto.Cipher$Transform.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        13: .line 376
            aload 5 /* list */
            new javax.crypto.Cipher$Transform
            dup
            aload 2 /* alg */
            new java.lang.StringBuilder
            dup
            ldc "/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* mode */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
            aload 4 /* pad */
            invokespecial javax.crypto.Cipher$Transform.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        14: .line 377
            aload 5 /* list */
            new javax.crypto.Cipher$Transform
            dup
            aload 2 /* alg */
            new java.lang.StringBuilder
            dup
            ldc "//"
            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;
            aload 3 /* mode */
            aconst_null
            invokespecial javax.crypto.Cipher$Transform.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        15: .line 378
            aload 5 /* list */
            new javax.crypto.Cipher$Transform
            dup
            aload 2 /* alg */
            ldc ""
            aload 3 /* mode */
            aload 4 /* pad */
            invokespecial javax.crypto.Cipher$Transform.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 379
            aload 5 /* list */
            areturn
        end local 5 // java.util.List list
        end local 4 // java.lang.String pad
        end local 3 // java.lang.String mode
        end local 2 // java.lang.String alg
        end local 1 // java.lang.String[] parts
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0  transformation  Ljava/lang/String;
            1   17     1           parts  [Ljava/lang/String;
            2   17     2             alg  Ljava/lang/String;
            3   17     3            mode  Ljava/lang/String;
            4   17     4             pad  Ljava/lang/String;
           10   11     5              tr  Ljavax/crypto/Cipher$Transform;
           12   17     5            list  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    Signature: (Ljava/lang/String;)Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
    MethodParameters:
                Name  Flags
      transformation  

  private static javax.crypto.Cipher$Transform getTransform(java.security.Provider$Service, java.util.List<javax.crypto.Cipher$Transform>);
    descriptor: (Ljava/security/Provider$Service;Ljava/util/List;)Ljavax/crypto/Cipher$Transform;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // java.security.Provider$Service s
        start local 1 // java.util.List transforms
         0: .line 386
            aload 0 /* s */
            invokevirtual java.security.Provider$Service.getAlgorithm:()Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 2 /* alg */
        start local 2 // java.lang.String alg
         1: .line 387
            aload 1 /* transforms */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: java.security.Provider$Service java.util.List java.lang.String top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.crypto.Cipher$Transform
            astore 3 /* tr */
        start local 3 // javax.crypto.Cipher$Transform tr
         3: .line 388
            aload 2 /* alg */
            aload 3 /* tr */
            getfield javax.crypto.Cipher$Transform.suffix:Ljava/lang/String;
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 389
            aload 3 /* tr */
            areturn
        end local 3 // javax.crypto.Cipher$Transform tr
         5: .line 387
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 392
            aconst_null
            areturn
        end local 2 // java.lang.String alg
        end local 1 // java.util.List transforms
        end local 0 // java.security.Provider$Service s
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0           s  Ljava/security/Provider$Service;
            0    7     1  transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
            1    7     2         alg  Ljava/lang/String;
            3    5     3          tr  Ljavax/crypto/Cipher$Transform;
    Signature: (Ljava/security/Provider$Service;Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;)Ljavax/crypto/Cipher$Transform;
    MethodParameters:
            Name  Flags
      s           
      transforms  

  public static final javax.crypto.Cipher getInstance(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/crypto/Cipher;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=7, locals=10, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 431
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getTransforms:(Ljava/lang/String;)Ljava/util/List;
            astore 1 /* transforms */
        start local 1 // java.util.List transforms
         1: .line 432
            new java.util.ArrayList
            dup
            aload 1 /* transforms */
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* cipherServices */
        start local 2 // java.util.List cipherServices
         2: .line 433
            aload 1 /* transforms */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: java.lang.String java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.crypto.Cipher$Transform
            astore 3 /* transform */
        start local 3 // javax.crypto.Cipher$Transform transform
         4: .line 434
            aload 2 /* cipherServices */
            new sun.security.jca.ServiceId
            dup
            ldc "Cipher"
            aload 3 /* transform */
            getfield javax.crypto.Cipher$Transform.transform:Ljava/lang/String;
            invokespecial sun.security.jca.ServiceId.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // javax.crypto.Cipher$Transform transform
         5: .line 433
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 436
            aload 2 /* cipherServices */
            invokestatic sun.security.jca.GetInstance.getServices:(Ljava/util/List;)Ljava/util/List;
            astore 3 /* services */
        start local 3 // java.util.List services
         7: .line 439
            aload 3 /* services */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4 /* t */
        start local 4 // java.util.Iterator t
         8: .line 440
            aconst_null
            astore 5 /* failure */
        start local 5 // java.lang.Exception failure
         9: .line 441
            goto 27
        10: .line 442
      StackMap locals: java.lang.String java.util.List java.util.List java.util.List java.util.Iterator java.lang.Exception
      StackMap stack:
            aload 4 /* t */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.security.Provider$Service
            astore 6 /* s */
        start local 6 // java.security.Provider$Service s
        11: .line 443
            aload 6 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            invokestatic javax.crypto.JceSecurity.canUseProvider:(Ljava/security/Provider;)Z
            ifne 13
        12: .line 444
            goto 27
        13: .line 446
      StackMap locals: java.security.Provider$Service
      StackMap stack:
            aload 6 /* s */
            aload 1 /* transforms */
            invokestatic javax.crypto.Cipher.getTransform:(Ljava/security/Provider$Service;Ljava/util/List;)Ljavax/crypto/Cipher$Transform;
            astore 7 /* tr */
        start local 7 // javax.crypto.Cipher$Transform tr
        14: .line 447
            aload 7 /* tr */
            ifnonnull 16
        15: .line 449
            goto 27
        16: .line 451
      StackMap locals: javax.crypto.Cipher$Transform
      StackMap stack:
            aload 7 /* tr */
            aload 6 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsModePadding:(Ljava/security/Provider$Service;)I
            istore 8 /* canuse */
        start local 8 // int canuse
        17: .line 452
            iload 8 /* canuse */
            ifne 19
        18: .line 454
            goto 27
        19: .line 456
      StackMap locals: int
      StackMap stack:
            iload 8 /* canuse */
            iconst_2
            if_icmpne 21
        20: .line 457
            new javax.crypto.Cipher
            dup
            aconst_null
            aload 6 /* s */
            aload 4 /* t */
            aload 0 /* transformation */
            aload 1 /* transforms */
            invokespecial javax.crypto.Cipher.<init>:(Ljavax/crypto/CipherSpi;Ljava/security/Provider$Service;Ljava/util/Iterator;Ljava/lang/String;Ljava/util/List;)V
            areturn
        21: .line 460
      StackMap locals:
      StackMap stack:
            aload 6 /* s */
            aconst_null
            invokevirtual java.security.Provider$Service.newInstance:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.crypto.CipherSpi
            astore 9 /* spi */
        start local 9 // javax.crypto.CipherSpi spi
        22: .line 461
            aload 7 /* tr */
            aload 9 /* spi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        23: .line 462
            new javax.crypto.Cipher
            dup
            aload 9 /* spi */
            aload 6 /* s */
            aload 4 /* t */
            aload 0 /* transformation */
            aload 1 /* transforms */
            invokespecial javax.crypto.Cipher.<init>:(Ljavax/crypto/CipherSpi;Ljava/security/Provider$Service;Ljava/util/Iterator;Ljava/lang/String;Ljava/util/List;)V
        24: areturn
        end local 9 // javax.crypto.CipherSpi spi
        25: .line 463
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 9 /* e */
        start local 9 // java.lang.Exception e
        26: .line 464
            aload 9 /* e */
            astore 5 /* failure */
        end local 9 // java.lang.Exception e
        end local 8 // int canuse
        end local 7 // javax.crypto.Cipher$Transform tr
        end local 6 // java.security.Provider$Service s
        27: .line 441
      StackMap locals:
      StackMap stack:
            aload 4 /* t */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        28: .line 468
            new java.security.NoSuchAlgorithmException
            dup
        29: .line 469
            new java.lang.StringBuilder
            dup
            ldc "Cannot find any provider supporting "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* failure */
        30: .line 468
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Exception failure
        end local 4 // java.util.Iterator t
        end local 3 // java.util.List services
        end local 2 // java.util.List cipherServices
        end local 1 // java.util.List transforms
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   31     0  transformation  Ljava/lang/String;
            1   31     1      transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
            2   31     2  cipherServices  Ljava/util/List<Lsun/security/jca/ServiceId;>;
            4    5     3       transform  Ljavax/crypto/Cipher$Transform;
            7   31     3        services  Ljava/util/List<Ljava/security/Provider$Service;>;
            8   31     4               t  Ljava/util/Iterator<Ljava/security/Provider$Service;>;
            9   31     5         failure  Ljava/lang/Exception;
           11   27     6               s  Ljava/security/Provider$Service;
           14   27     7              tr  Ljavax/crypto/Cipher$Transform;
           17   27     8          canuse  I
           22   25     9             spi  Ljavax/crypto/CipherSpi;
           26   27     9               e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          21    24      25  Class java.lang.Exception
    Exceptions:
      throws java.security.NoSuchAlgorithmException, javax.crypto.NoSuchPaddingException
    MethodParameters:
                Name  Flags
      transformation  

  public static final javax.crypto.Cipher getInstance(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/Cipher;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.lang.String transformation
        start local 1 // java.lang.String provider
         0: .line 517
            aload 1 /* provider */
            ifnull 1
            aload 1 /* provider */
            invokevirtual java.lang.String.length:()I
            ifne 2
         1: .line 518
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Missing provider"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 520
      StackMap locals:
      StackMap stack:
            aload 1 /* provider */
            invokestatic java.security.Security.getProvider:(Ljava/lang/String;)Ljava/security/Provider;
            astore 2 /* p */
        start local 2 // java.security.Provider p
         3: .line 521
            aload 2 /* p */
            ifnonnull 7
         4: .line 522
            new java.security.NoSuchProviderException
            dup
            new java.lang.StringBuilder
            dup
            ldc "No such provider: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 523
            aload 1 /* provider */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 522
            invokespecial java.security.NoSuchProviderException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 525
      StackMap locals: java.security.Provider
      StackMap stack:
            aload 0 /* transformation */
            aload 2 /* p */
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Cipher;
            areturn
        end local 2 // java.security.Provider p
        end local 1 // java.lang.String provider
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0  transformation  Ljava/lang/String;
            0    8     1        provider  Ljava/lang/String;
            3    8     2               p  Ljava/security/Provider;
    Exceptions:
      throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, javax.crypto.NoSuchPaddingException
    MethodParameters:
                Name  Flags
      transformation  
      provider        

  public static final javax.crypto.Cipher getInstance(java.lang.String, java.security.Provider);
    descriptor: (Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Cipher;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // java.lang.String transformation
        start local 1 // java.security.Provider provider
         0: .line 566
            aload 1 /* provider */
            ifnonnull 2
         1: .line 567
            new java.lang.IllegalArgumentException
            dup
            ldc "Missing provider"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 569
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* failure */
        start local 2 // java.lang.Exception failure
         3: .line 570
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getTransforms:(Ljava/lang/String;)Ljava/util/List;
            astore 3 /* transforms */
        start local 3 // java.util.List transforms
         4: .line 571
            iconst_0
            istore 4 /* providerChecked */
        start local 4 // boolean providerChecked
         5: .line 572
            aconst_null
            astore 5 /* paddingError */
        start local 5 // java.lang.String paddingError
         6: .line 573
            aload 3 /* transforms */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 33
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String top java.util.Iterator
      StackMap stack:
         7: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.crypto.Cipher$Transform
            astore 6 /* tr */
        start local 6 // javax.crypto.Cipher$Transform tr
         8: .line 574
            aload 1 /* provider */
            ldc "Cipher"
            aload 6 /* tr */
            getfield javax.crypto.Cipher$Transform.transform:Ljava/lang/String;
            invokevirtual java.security.Provider.getService:(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;
            astore 8 /* s */
        start local 8 // java.security.Provider$Service s
         9: .line 575
            aload 8 /* s */
            ifnonnull 11
        10: .line 576
            goto 33
        11: .line 578
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String javax.crypto.Cipher$Transform java.util.Iterator java.security.Provider$Service
      StackMap stack:
            iload 4 /* providerChecked */
            ifne 19
        12: .line 583
            aload 1 /* provider */
            invokestatic javax.crypto.JceSecurity.getVerificationResult:(Ljava/security/Provider;)Ljava/lang/Exception;
            astore 9 /* ve */
        start local 9 // java.lang.Exception ve
        13: .line 584
            aload 9 /* ve */
            ifnull 18
        14: .line 585
            new java.lang.StringBuilder
            dup
            ldc "JCE cannot authenticate the provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 586
            aload 1 /* provider */
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        16: .line 585
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 10 /* msg */
        start local 10 // java.lang.String msg
        17: .line 587
            new java.lang.SecurityException
            dup
            aload 10 /* msg */
            aload 9 /* ve */
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 10 // java.lang.String msg
        18: .line 589
      StackMap locals: java.lang.Exception
      StackMap stack:
            iconst_1
            istore 4 /* providerChecked */
        end local 9 // java.lang.Exception ve
        19: .line 591
      StackMap locals:
      StackMap stack:
            aload 6 /* tr */
            aload 8 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsMode:(Ljava/security/Provider$Service;)I
            ifne 21
        20: .line 592
            goto 33
        21: .line 594
      StackMap locals:
      StackMap stack:
            aload 6 /* tr */
            aload 8 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsPadding:(Ljava/security/Provider$Service;)I
            ifne 24
        22: .line 595
            aload 6 /* tr */
            getfield javax.crypto.Cipher$Transform.pad:Ljava/lang/String;
            astore 5 /* paddingError */
        23: .line 596
            goto 33
        24: .line 599
      StackMap locals:
      StackMap stack:
            aload 8 /* s */
            aconst_null
            invokevirtual java.security.Provider$Service.newInstance:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.crypto.CipherSpi
            astore 9 /* spi */
        start local 9 // javax.crypto.CipherSpi spi
        25: .line 600
            aload 6 /* tr */
            aload 9 /* spi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        26: .line 601
            new javax.crypto.Cipher
            dup
            aload 9 /* spi */
            aload 0 /* transformation */
            invokespecial javax.crypto.Cipher.<init>:(Ljavax/crypto/CipherSpi;Ljava/lang/String;)V
            astore 10 /* cipher */
        start local 10 // javax.crypto.Cipher cipher
        27: .line 602
            aload 10 /* cipher */
            aload 8 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
        28: .line 603
            aload 10 /* cipher */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        29: .line 604
            aload 10 /* cipher */
        30: areturn
        end local 10 // javax.crypto.Cipher cipher
        end local 9 // javax.crypto.CipherSpi spi
        31: .line 605
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 9 /* e */
        start local 9 // java.lang.Exception e
        32: .line 606
            aload 9 /* e */
            astore 2 /* failure */
        end local 9 // java.lang.Exception e
        end local 8 // java.security.Provider$Service s
        end local 6 // javax.crypto.Cipher$Transform tr
        33: .line 573
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        34: .line 611
            aload 2 /* failure */
            instanceof javax.crypto.NoSuchPaddingException
            ifeq 36
        35: .line 612
            aload 2 /* failure */
            checkcast javax.crypto.NoSuchPaddingException
            athrow
        36: .line 614
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String
      StackMap stack:
            aload 5 /* paddingError */
            ifnull 40
        37: .line 615
            new javax.crypto.NoSuchPaddingException
            dup
        38: .line 616
            new java.lang.StringBuilder
            dup
            ldc "Padding not supported: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* paddingError */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        39: .line 615
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        40: .line 618
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
        41: .line 619
            new java.lang.StringBuilder
            dup
            ldc "No such algorithm: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* failure */
        42: .line 618
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.String paddingError
        end local 4 // boolean providerChecked
        end local 3 // java.util.List transforms
        end local 2 // java.lang.Exception failure
        end local 1 // java.security.Provider provider
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   43     0   transformation  Ljava/lang/String;
            0   43     1         provider  Ljava/security/Provider;
            3   43     2          failure  Ljava/lang/Exception;
            4   43     3       transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
            5   43     4  providerChecked  Z
            6   43     5     paddingError  Ljava/lang/String;
            8   33     6               tr  Ljavax/crypto/Cipher$Transform;
            9   33     8                s  Ljava/security/Provider$Service;
           13   19     9               ve  Ljava/lang/Exception;
           17   18    10              msg  Ljava/lang/String;
           25   31     9              spi  Ljavax/crypto/CipherSpi;
           27   31    10           cipher  Ljavax/crypto/Cipher;
           32   33     9                e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          24    30      31  Class java.lang.Exception
    Exceptions:
      throws java.security.NoSuchAlgorithmException, javax.crypto.NoSuchPaddingException
    MethodParameters:
                Name  Flags
      transformation  
      provider        

  private void initCryptoPermission();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 625
            invokestatic javax.crypto.JceSecurity.isRestricted:()Z
            ifne 4
         1: .line 626
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         2: .line 627
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
         3: .line 628
            return
         4: .line 630
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            invokestatic javax.crypto.Cipher.getConfiguredPermission:(Ljava/lang/String;)Ljavax/crypto/CryptoPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         5: .line 632
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            invokevirtual javax.crypto.CryptoPermission.getExemptionMechanism:()Ljava/lang/String;
            astore 1 /* exmechName */
        start local 1 // java.lang.String exmechName
         6: .line 633
            aload 1 /* exmechName */
            ifnull 8
         7: .line 634
            aload 0 /* this */
            aload 1 /* exmechName */
            invokestatic javax.crypto.ExemptionMechanism.getInstance:(Ljava/lang/String;)Ljavax/crypto/ExemptionMechanism;
            putfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
         8: .line 636
      StackMap locals: java.lang.String
      StackMap stack:
            return
        end local 1 // java.lang.String exmechName
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Ljavax/crypto/Cipher;
            6    9     1  exmechName  Ljava/lang/String;
    Exceptions:
      throws java.security.NoSuchAlgorithmException

  void chooseFirstProvider();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 647
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 2
         1: .line 648
            return
         2: .line 650
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         3: .line 651
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         4: .line 652
            aload 1
            monitorexit
         5: return
         6: .line 654
      StackMap locals: java.lang.Object
      StackMap stack:
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 13
         7: .line 655
            getstatic javax.crypto.Cipher.warnCount:I
            iconst_1
            isub
            dup
            putstatic javax.crypto.Cipher.warnCount:I
            istore 2 /* w */
        start local 2 // int w
         8: .line 656
            iload 2 /* w */
            iflt 13
         9: .line 657
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ldc "Cipher.init() not first method called, disabling delayed provider selection"
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        10: .line 659
            iload 2 /* w */
            ifne 12
        11: .line 660
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ldc "Further warnings of this type will be suppressed"
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        12: .line 663
      StackMap locals: int
      StackMap stack:
            new java.lang.Exception
            dup
            ldc "Call trace"
            invokespecial java.lang.Exception.<init>:(Ljava/lang/String;)V
            invokevirtual java.lang.Exception.printStackTrace:()V
        end local 2 // int w
        13: .line 666
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* lastException */
        start local 2 // java.lang.Exception lastException
        14: .line 667
            goto 46
        15: .line 670
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnull 21
        16: .line 671
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            astore 3 /* s */
        start local 3 // java.security.Provider$Service s
        17: .line 672
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
            astore 4 /* thisSpi */
        start local 4 // javax.crypto.CipherSpi thisSpi
        18: .line 673
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        19: .line 674
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
        20: .line 675
            goto 23
        end local 4 // javax.crypto.CipherSpi thisSpi
        end local 3 // java.security.Provider$Service s
        21: .line 676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.security.Provider$Service
            astore 3 /* s */
        start local 3 // java.security.Provider$Service s
        22: .line 677
            aconst_null
            astore 4 /* thisSpi */
        start local 4 // javax.crypto.CipherSpi thisSpi
        23: .line 679
      StackMap locals: java.security.Provider$Service javax.crypto.CipherSpi
      StackMap stack:
            aload 3 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            invokestatic javax.crypto.JceSecurity.canUseProvider:(Ljava/security/Provider;)Z
            ifne 25
        24: .line 680
            goto 46
        25: .line 682
      StackMap locals:
      StackMap stack:
            aload 3 /* s */
            aload 0 /* this */
            getfield javax.crypto.Cipher.transforms:Ljava/util/List;
            invokestatic javax.crypto.Cipher.getTransform:(Ljava/security/Provider$Service;Ljava/util/List;)Ljavax/crypto/Cipher$Transform;
            astore 5 /* tr */
        start local 5 // javax.crypto.Cipher$Transform tr
        26: .line 683
            aload 5 /* tr */
            ifnonnull 28
        27: .line 685
            goto 46
        28: .line 687
      StackMap locals: javax.crypto.Cipher$Transform
      StackMap stack:
            aload 5 /* tr */
            aload 3 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsModePadding:(Ljava/security/Provider$Service;)I
            ifne 30
        29: .line 688
            goto 46
        30: .line 691
      StackMap locals:
      StackMap stack:
            aload 4 /* thisSpi */
            ifnonnull 35
        31: .line 692
            aload 3 /* s */
            aconst_null
            invokevirtual java.security.Provider$Service.newInstance:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* obj */
        start local 6 // java.lang.Object obj
        32: .line 693
            aload 6 /* obj */
            instanceof javax.crypto.CipherSpi
            ifne 34
        33: .line 694
            goto 46
        34: .line 696
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 6 /* obj */
            checkcast javax.crypto.CipherSpi
            astore 4 /* thisSpi */
        end local 6 // java.lang.Object obj
        35: .line 698
      StackMap locals:
      StackMap stack:
            aload 5 /* tr */
            aload 4 /* thisSpi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        36: .line 699
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        37: .line 700
            aload 0 /* this */
            aload 4 /* thisSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
        38: .line 701
            aload 0 /* this */
            aload 3 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
        39: .line 703
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        40: .line 704
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
        41: .line 705
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
        42: .line 706
            aload 1
            monitorexit
        43: return
        44: .line 707
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 6 /* e */
        start local 6 // java.lang.Exception e
        45: .line 708
            aload 6 /* e */
            astore 2 /* lastException */
        end local 6 // java.lang.Exception e
        end local 5 // javax.crypto.Cipher$Transform tr
        end local 4 // javax.crypto.CipherSpi thisSpi
        end local 3 // java.security.Provider$Service s
        46: .line 667
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnonnull 15
            aload 0 /* this */
            getfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 15
        47: .line 711
            new java.security.ProviderException
            dup
        48: .line 712
            ldc "Could not construct CipherSpi instance"
        49: .line 711
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            astore 3 /* e */
        start local 3 // java.security.ProviderException e
        50: .line 713
            aload 2 /* lastException */
            ifnull 52
        51: .line 714
            aload 3 /* e */
            aload 2 /* lastException */
            invokevirtual java.security.ProviderException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        52: .line 716
      StackMap locals: java.security.ProviderException
      StackMap stack:
            aload 3 /* e */
            athrow
        end local 3 // java.security.ProviderException e
        end local 2 // java.lang.Exception lastException
        53: .line 650
      StackMap locals: javax.crypto.Cipher java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        54: athrow
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   55     0           this  Ljavax/crypto/Cipher;
            8   13     2              w  I
           14   53     2  lastException  Ljava/lang/Exception;
           17   21     3              s  Ljava/security/Provider$Service;
           22   46     3              s  Ljava/security/Provider$Service;
           18   21     4        thisSpi  Ljavax/crypto/CipherSpi;
           23   46     4        thisSpi  Ljavax/crypto/CipherSpi;
           26   46     5             tr  Ljavax/crypto/Cipher$Transform;
           32   35     6            obj  Ljava/lang/Object;
           45   46     6              e  Ljava/lang/Exception;
           50   53     3              e  Ljava/security/ProviderException;
      Exception table:
        from    to  target  type
          30    33      44  Class java.lang.Exception
          34    42      44  Class java.lang.Exception
           3     5      53  any
           6    43      53  any
          44    54      53  any

  private void implInit(javax.crypto.CipherSpi, int, int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (Ljavax/crypto/CipherSpi;IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=8
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi thisSpi
        start local 2 // int type
        start local 3 // int opmode
        start local 4 // java.security.Key key
        start local 5 // java.security.spec.AlgorithmParameterSpec paramSpec
        start local 6 // java.security.AlgorithmParameters params
        start local 7 // java.security.SecureRandom random
         0: .line 729
            iload 2 /* type */
            tableswitch { // 1 - 4
                    1: 1
                    2: 4
                    3: 7
                    4: 10
              default: 13
          }
         1: .line 731
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* thisSpi */
            aload 4 /* key */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;)V
         2: .line 732
            aload 1 /* thisSpi */
            iload 3 /* opmode */
            aload 4 /* key */
            aload 7 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/SecureRandom;)V
         3: .line 733
            goto 14
         4: .line 735
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* thisSpi */
            aload 4 /* key */
            aload 5 /* paramSpec */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
         5: .line 736
            aload 1 /* thisSpi */
            iload 3 /* opmode */
            aload 4 /* key */
            aload 5 /* paramSpec */
            aload 7 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         6: .line 737
            goto 14
         7: .line 739
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* thisSpi */
            aload 4 /* key */
            aload 6 /* params */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/AlgorithmParameters;)V
         8: .line 740
            aload 1 /* thisSpi */
            iload 3 /* opmode */
            aload 4 /* key */
            aload 6 /* params */
            aload 7 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         9: .line 741
            goto 14
        10: .line 743
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* thisSpi */
            aload 4 /* key */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;)V
        11: .line 744
            aload 1 /* thisSpi */
            iload 3 /* opmode */
            aload 4 /* key */
            aload 7 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/SecureRandom;)V
        12: .line 745
            goto 14
        13: .line 747
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Internal Cipher error: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* type */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        14: .line 749
      StackMap locals:
      StackMap stack:
            return
        end local 7 // java.security.SecureRandom random
        end local 6 // java.security.AlgorithmParameters params
        end local 5 // java.security.spec.AlgorithmParameterSpec paramSpec
        end local 4 // java.security.Key key
        end local 3 // int opmode
        end local 2 // int type
        end local 1 // javax.crypto.CipherSpi thisSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Ljavax/crypto/Cipher;
            0   15     1    thisSpi  Ljavax/crypto/CipherSpi;
            0   15     2       type  I
            0   15     3     opmode  I
            0   15     4        key  Ljava/security/Key;
            0   15     5  paramSpec  Ljava/security/spec/AlgorithmParameterSpec;
            0   15     6     params  Ljava/security/AlgorithmParameters;
            0   15     7     random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
           Name  Flags
      thisSpi    
      type       
      opmode     
      key        
      paramSpec  
      params     
      random     

  private void chooseProvider(int, int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=13, args_size=7
        start local 0 // javax.crypto.Cipher this
        start local 1 // int initType
        start local 2 // int opmode
        start local 3 // java.security.Key key
        start local 4 // java.security.spec.AlgorithmParameterSpec paramSpec
        start local 5 // java.security.AlgorithmParameters params
        start local 6 // java.security.SecureRandom random
         0: .line 755
            aload 0 /* this */
            getfield javax.crypto.Cipher.lock:Ljava/lang/Object;
            dup
            astore 7
            monitorenter
         1: .line 756
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 5
         2: .line 757
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* initType */
            iload 2 /* opmode */
            aload 3 /* key */
            aload 4 /* paramSpec */
            aload 5 /* params */
            aload 6 /* random */
            invokevirtual javax.crypto.Cipher.implInit:(Ljavax/crypto/CipherSpi;IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         3: .line 758
            aload 7
            monitorexit
         4: return
         5: .line 760
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            astore 8 /* lastException */
        start local 8 // java.lang.Exception lastException
         6: .line 761
            goto 41
         7: .line 764
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnull 13
         8: .line 765
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            astore 9 /* s */
        start local 9 // java.security.Provider$Service s
         9: .line 766
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
            astore 10 /* thisSpi */
        start local 10 // javax.crypto.CipherSpi thisSpi
        10: .line 767
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        11: .line 768
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
        12: .line 769
            goto 15
        end local 10 // javax.crypto.CipherSpi thisSpi
        end local 9 // java.security.Provider$Service s
        13: .line 770
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.security.Provider$Service
            astore 9 /* s */
        start local 9 // java.security.Provider$Service s
        14: .line 771
            aconst_null
            astore 10 /* thisSpi */
        start local 10 // javax.crypto.CipherSpi thisSpi
        15: .line 774
      StackMap locals: java.security.Provider$Service javax.crypto.CipherSpi
      StackMap stack:
            aload 9 /* s */
            aload 3 /* key */
            invokevirtual java.security.Provider$Service.supportsParameter:(Ljava/lang/Object;)Z
            ifne 17
        16: .line 775
            goto 41
        17: .line 777
      StackMap locals:
      StackMap stack:
            aload 9 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            invokestatic javax.crypto.JceSecurity.canUseProvider:(Ljava/security/Provider;)Z
            ifne 19
        18: .line 778
            goto 41
        19: .line 780
      StackMap locals:
      StackMap stack:
            aload 9 /* s */
            aload 0 /* this */
            getfield javax.crypto.Cipher.transforms:Ljava/util/List;
            invokestatic javax.crypto.Cipher.getTransform:(Ljava/security/Provider$Service;Ljava/util/List;)Ljavax/crypto/Cipher$Transform;
            astore 11 /* tr */
        start local 11 // javax.crypto.Cipher$Transform tr
        20: .line 781
            aload 11 /* tr */
            ifnonnull 22
        21: .line 783
            goto 41
        22: .line 785
      StackMap locals: javax.crypto.Cipher$Transform
      StackMap stack:
            aload 11 /* tr */
            aload 9 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsModePadding:(Ljava/security/Provider$Service;)I
            ifne 24
        23: .line 786
            goto 41
        24: .line 789
      StackMap locals:
      StackMap stack:
            aload 10 /* thisSpi */
            ifnonnull 26
        25: .line 790
            aload 9 /* s */
            aconst_null
            invokevirtual java.security.Provider$Service.newInstance:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.crypto.CipherSpi
            astore 10 /* thisSpi */
        26: .line 792
      StackMap locals:
      StackMap stack:
            aload 11 /* tr */
            aload 10 /* thisSpi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        27: .line 793
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        28: .line 794
            aload 0 /* this */
            aload 10 /* thisSpi */
            iload 1 /* initType */
            iload 2 /* opmode */
            aload 3 /* key */
            aload 4 /* paramSpec */
        29: .line 795
            aload 5 /* params */
            aload 6 /* random */
        30: .line 794
            invokevirtual javax.crypto.Cipher.implInit:(Ljavax/crypto/CipherSpi;IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
        31: .line 796
            aload 0 /* this */
            aload 9 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
        32: .line 797
            aload 0 /* this */
            aload 10 /* thisSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
        33: .line 798
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        34: .line 799
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
        35: .line 800
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
        36: .line 801
            aload 7
            monitorexit
        37: return
        38: .line 802
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 12 /* e */
        start local 12 // java.lang.Exception e
        39: .line 807
            aload 8 /* lastException */
            ifnonnull 41
        40: .line 808
            aload 12 /* e */
            astore 8 /* lastException */
        end local 12 // java.lang.Exception e
        end local 11 // javax.crypto.Cipher$Transform tr
        end local 10 // javax.crypto.CipherSpi thisSpi
        end local 9 // java.security.Provider$Service s
        41: .line 761
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnonnull 7
            aload 0 /* this */
            getfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        42: .line 813
            aload 8 /* lastException */
            instanceof java.security.InvalidKeyException
            ifeq 44
        43: .line 814
            aload 8 /* lastException */
            checkcast java.security.InvalidKeyException
            athrow
        44: .line 816
      StackMap locals:
      StackMap stack:
            aload 8 /* lastException */
            instanceof java.security.InvalidAlgorithmParameterException
            ifeq 46
        45: .line 817
            aload 8 /* lastException */
            checkcast java.security.InvalidAlgorithmParameterException
            athrow
        46: .line 819
      StackMap locals:
      StackMap stack:
            aload 8 /* lastException */
            instanceof java.lang.RuntimeException
            ifeq 48
        47: .line 820
            aload 8 /* lastException */
            checkcast java.lang.RuntimeException
            athrow
        48: .line 822
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            ifnull 49
            aload 3 /* key */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            goto 50
      StackMap locals:
      StackMap stack:
        49: ldc "(null)"
      StackMap locals:
      StackMap stack: java.lang.String
        50: astore 9 /* kName */
        start local 9 // java.lang.String kName
        51: .line 823
            new java.security.InvalidKeyException
            dup
        52: .line 824
            new java.lang.StringBuilder
            dup
            ldc "No installed provider supports this key: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        53: .line 825
            aload 9 /* kName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        54: .line 824
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        55: .line 825
            aload 8 /* lastException */
        56: .line 823
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // java.lang.String kName
        end local 8 // java.lang.Exception lastException
        57: .line 755
      StackMap locals: javax.crypto.Cipher int int java.security.Key java.security.spec.AlgorithmParameterSpec java.security.AlgorithmParameters java.security.SecureRandom java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 7
            monitorexit
        58: athrow
        end local 6 // java.security.SecureRandom random
        end local 5 // java.security.AlgorithmParameters params
        end local 4 // java.security.spec.AlgorithmParameterSpec paramSpec
        end local 3 // java.security.Key key
        end local 2 // int opmode
        end local 1 // int initType
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   59     0           this  Ljavax/crypto/Cipher;
            0   59     1       initType  I
            0   59     2         opmode  I
            0   59     3            key  Ljava/security/Key;
            0   59     4      paramSpec  Ljava/security/spec/AlgorithmParameterSpec;
            0   59     5         params  Ljava/security/AlgorithmParameters;
            0   59     6         random  Ljava/security/SecureRandom;
            6   57     8  lastException  Ljava/lang/Exception;
            9   13     9              s  Ljava/security/Provider$Service;
           14   41     9              s  Ljava/security/Provider$Service;
           10   13    10        thisSpi  Ljavax/crypto/CipherSpi;
           15   41    10        thisSpi  Ljavax/crypto/CipherSpi;
           20   41    11             tr  Ljavax/crypto/Cipher$Transform;
           39   41    12              e  Ljava/lang/Exception;
           51   57     9          kName  Ljava/lang/String;
      Exception table:
        from    to  target  type
          24    36      38  Class java.lang.Exception
           1     4      57  any
           5    37      57  any
          38    58      57  any
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
           Name  Flags
      initType   
      opmode     
      key        
      paramSpec  
      params     
      random     

  public final java.security.Provider getProvider();
    descriptor: ()Ljava/security/Provider;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 835
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 836
            aload 0 /* this */
            getfield javax.crypto.Cipher.provider:Ljava/security/Provider;
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/Cipher;

  public final java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 849
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/Cipher;

  public final int getBlockSize();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 859
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 860
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            invokevirtual javax.crypto.CipherSpi.engineGetBlockSize:()I
            ireturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/Cipher;

  public final int getOutputSize(int);
    descriptor: (I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.crypto.Cipher this
        start local 1 // int inputLen
         0: .line 885
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 2
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 2
         1: .line 886
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 888
      StackMap locals:
      StackMap stack:
            iload 1 /* inputLen */
            ifge 4
         3: .line 889
            new java.lang.IllegalArgumentException
            dup
            ldc "Input size must be equal to or greater than zero"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 892
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 893
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* inputLen */
            invokevirtual javax.crypto.CipherSpi.engineGetOutputSize:(I)I
            ireturn
        end local 1 // int inputLen
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Ljavax/crypto/Cipher;
            0    6     1  inputLen  I
    MethodParameters:
          Name  Flags
      inputLen  

  public final byte[] getIV();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 908
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 909
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            invokevirtual javax.crypto.CipherSpi.engineGetIV:()[B
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/Cipher;

  public final java.security.AlgorithmParameters getParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 924
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 925
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            invokevirtual javax.crypto.CipherSpi.engineGetParameters:()Ljava/security/AlgorithmParameters;
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/Cipher;

  public final javax.crypto.ExemptionMechanism getExemptionMechanism();
    descriptor: ()Ljavax/crypto/ExemptionMechanism;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 935
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 936
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/Cipher;

  private void checkCryptoPerm(javax.crypto.CipherSpi, java.security.Key);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Key;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi checkSpi
        start local 2 // java.security.Key key
         0: .line 944
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 945
            return
         2: .line 950
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* checkSpi */
            invokevirtual javax.crypto.CipherSpi.engineGetParameters:()Ljava/security/AlgorithmParameters;
            invokevirtual javax.crypto.Cipher.getAlgorithmParameterSpec:(Ljava/security/AlgorithmParameters;)Ljava/security/spec/AlgorithmParameterSpec;
            astore 3 /* params */
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         3: .line 951
            goto 8
        end local 3 // java.security.spec.AlgorithmParameterSpec params
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         4: pop
         5: .line 952
            new java.security.InvalidKeyException
            dup
         6: .line 953
            ldc "Unsupported default algorithm parameters"
         7: .line 952
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         8: .line 955
      StackMap locals: java.security.spec.AlgorithmParameterSpec
      StackMap stack:
            aload 0 /* this */
            aload 1 /* checkSpi */
            aload 2 /* key */
            aload 3 /* params */
            invokevirtual javax.crypto.Cipher.passCryptoPermCheck:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)Z
            ifne 12
         9: .line 956
            new java.security.InvalidKeyException
            dup
        10: .line 957
            ldc "Illegal key size or default parameters"
        11: .line 956
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 959
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // javax.crypto.CipherSpi checkSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Ljavax/crypto/Cipher;
            0   13     1  checkSpi  Ljavax/crypto/CipherSpi;
            0   13     2       key  Ljava/security/Key;
            3    4     3    params  Ljava/security/spec/AlgorithmParameterSpec;
            8   13     3    params  Ljava/security/spec/AlgorithmParameterSpec;
      Exception table:
        from    to  target  type
           2     3       4  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
          Name  Flags
      checkSpi  
      key       

  private void checkCryptoPerm(javax.crypto.CipherSpi, java.security.Key, java.security.spec.AlgorithmParameterSpec);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi checkSpi
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         0: .line 964
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 965
            return
         2: .line 968
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* checkSpi */
            aload 2 /* key */
            aconst_null
            invokevirtual javax.crypto.Cipher.passCryptoPermCheck:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)Z
            ifne 4
         3: .line 969
            new java.security.InvalidKeyException
            dup
            ldc "Illegal key size"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 971
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            ifnull 6
            aload 0 /* this */
            aload 1 /* checkSpi */
            aload 2 /* key */
            aload 3 /* params */
            invokevirtual javax.crypto.Cipher.passCryptoPermCheck:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)Z
            ifne 6
         5: .line 972
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "Illegal parameters"
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 974
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // javax.crypto.CipherSpi checkSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljavax/crypto/Cipher;
            0    7     1  checkSpi  Ljavax/crypto/CipherSpi;
            0    7     2       key  Ljava/security/Key;
            0    7     3    params  Ljava/security/spec/AlgorithmParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
          Name  Flags
      checkSpi  
      key       
      params    

  private void checkCryptoPerm(javax.crypto.CipherSpi, java.security.Key, java.security.AlgorithmParameters);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/AlgorithmParameters;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi checkSpi
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
         0: .line 979
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 980
            return
         2: .line 985
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* params */
            invokevirtual javax.crypto.Cipher.getAlgorithmParameterSpec:(Ljava/security/AlgorithmParameters;)Ljava/security/spec/AlgorithmParameterSpec;
            astore 4 /* pSpec */
        start local 4 // java.security.spec.AlgorithmParameterSpec pSpec
         3: .line 986
            goto 8
        end local 4 // java.security.spec.AlgorithmParameterSpec pSpec
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         4: pop
         5: .line 987
            new java.security.InvalidAlgorithmParameterException
            dup
         6: .line 988
            ldc "Failed to retrieve algorithm parameter specification"
         7: .line 987
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // java.security.spec.AlgorithmParameterSpec pSpec
         8: .line 990
      StackMap locals: java.security.spec.AlgorithmParameterSpec
      StackMap stack:
            aload 0 /* this */
            aload 1 /* checkSpi */
            aload 2 /* key */
            aload 4 /* pSpec */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
         9: .line 991
            return
        end local 4 // java.security.spec.AlgorithmParameterSpec pSpec
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // javax.crypto.CipherSpi checkSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Ljavax/crypto/Cipher;
            0   10     1  checkSpi  Ljavax/crypto/CipherSpi;
            0   10     2       key  Ljava/security/Key;
            0   10     3    params  Ljava/security/AlgorithmParameters;
            3    4     4     pSpec  Ljava/security/spec/AlgorithmParameterSpec;
            8   10     4     pSpec  Ljava/security/spec/AlgorithmParameterSpec;
      Exception table:
        from    to  target  type
           2     3       4  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
          Name  Flags
      checkSpi  
      key       
      params    

  private boolean passCryptoPermCheck(javax.crypto.CipherSpi, java.security.Key, java.security.spec.AlgorithmParameterSpec);
    descriptor: (Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // javax.crypto.CipherSpi checkSpi
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         0: .line 996
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            invokevirtual javax.crypto.CryptoPermission.getExemptionMechanism:()Ljava/lang/String;
            astore 4 /* em */
        start local 4 // java.lang.String em
         1: .line 997
            aload 1 /* checkSpi */
            aload 2 /* key */
            invokevirtual javax.crypto.CipherSpi.engineGetKeySize:(Ljava/security/Key;)I
            istore 5 /* keySize */
        start local 5 // int keySize
         2: .line 1002
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            bipush 47
            invokevirtual java.lang.String.indexOf:(I)I
            istore 7 /* index */
        start local 7 // int index
         3: .line 1003
            iload 7 /* index */
            iconst_m1
            if_icmpeq 6
         4: .line 1004
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            iconst_0
            iload 7 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 6 /* algComponent */
        start local 6 // java.lang.String algComponent
         5: .line 1005
            goto 7
        end local 6 // java.lang.String algComponent
         6: .line 1006
      StackMap locals: javax.crypto.Cipher javax.crypto.CipherSpi java.security.Key java.security.spec.AlgorithmParameterSpec java.lang.String int top int
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            astore 6 /* algComponent */
        start local 6 // java.lang.String algComponent
         7: .line 1009
      StackMap locals: javax.crypto.Cipher javax.crypto.CipherSpi java.security.Key java.security.spec.AlgorithmParameterSpec java.lang.String int java.lang.String int
      StackMap stack:
            new javax.crypto.CryptoPermission
            dup
            aload 6 /* algComponent */
            iload 5 /* keySize */
            aload 3 /* params */
            aload 4 /* em */
            invokespecial javax.crypto.CryptoPermission.<init>:(Ljava/lang/String;ILjava/security/spec/AlgorithmParameterSpec;Ljava/lang/String;)V
         8: .line 1008
            astore 8 /* checkPerm */
        start local 8 // javax.crypto.CryptoPermission checkPerm
         9: .line 1011
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            aload 8 /* checkPerm */
            invokevirtual javax.crypto.CryptoPermission.implies:(Ljava/security/Permission;)Z
            ifne 15
        10: .line 1012
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 14
        11: .line 1013
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ldc "Crypto Permission check failed"
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        12: .line 1014
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            new java.lang.StringBuilder
            dup
            ldc "granted: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        13: .line 1015
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            new java.lang.StringBuilder
            dup
            ldc "requesting: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* checkPerm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        14: .line 1017
      StackMap locals: javax.crypto.CryptoPermission
      StackMap stack:
            iconst_0
            ireturn
        15: .line 1019
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            ifnonnull 17
        16: .line 1020
            iconst_1
            ireturn
        17: .line 1023
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            aload 2 /* key */
            invokevirtual javax.crypto.ExemptionMechanism.isCryptoAllowed:(Ljava/security/Key;)Z
            ifne 28
        18: .line 1024
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 20
        19: .line 1025
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            invokevirtual javax.crypto.ExemptionMechanism.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " isn't enforced"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        20: .line 1027
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        21: .line 1029
      StackMap locals:
      StackMap stack: javax.crypto.ExemptionMechanismException
            astore 9 /* eme */
        start local 9 // javax.crypto.ExemptionMechanismException eme
        22: .line 1030
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 27
        23: .line 1031
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            new java.lang.StringBuilder
            dup
            ldc "Cannot determine whether "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        24: .line 1032
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            invokevirtual javax.crypto.ExemptionMechanism.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " has been enforced"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        25: .line 1031
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        26: .line 1033
            aload 9 /* eme */
            invokevirtual javax.crypto.ExemptionMechanismException.printStackTrace:()V
        27: .line 1035
      StackMap locals: javax.crypto.ExemptionMechanismException
      StackMap stack:
            iconst_0
            ireturn
        end local 9 // javax.crypto.ExemptionMechanismException eme
        28: .line 1037
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 8 // javax.crypto.CryptoPermission checkPerm
        end local 7 // int index
        end local 6 // java.lang.String algComponent
        end local 5 // int keySize
        end local 4 // java.lang.String em
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // javax.crypto.CipherSpi checkSpi
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   29     0          this  Ljavax/crypto/Cipher;
            0   29     1      checkSpi  Ljavax/crypto/CipherSpi;
            0   29     2           key  Ljava/security/Key;
            0   29     3        params  Ljava/security/spec/AlgorithmParameterSpec;
            1   29     4            em  Ljava/lang/String;
            2   29     5       keySize  I
            5    6     6  algComponent  Ljava/lang/String;
            7   29     6  algComponent  Ljava/lang/String;
            3   29     7         index  I
            9   29     8     checkPerm  Ljavax/crypto/CryptoPermission;
           22   28     9           eme  Ljavax/crypto/ExemptionMechanismException;
      Exception table:
        from    to  target  type
          17    20      21  Class javax.crypto.ExemptionMechanismException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
          Name  Flags
      checkSpi  
      key       
      params    

  private static void checkOpmode(int);
    descriptor: (I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int opmode
         0: .line 1043
            iload 0 /* opmode */
            iconst_1
            if_icmplt 1
            iload 0 /* opmode */
            iconst_4
            if_icmple 2
         1: .line 1044
      StackMap locals:
      StackMap stack:
            new java.security.InvalidParameterException
            dup
            ldc "Invalid operation mode"
            invokespecial java.security.InvalidParameterException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1046
      StackMap locals:
      StackMap stack:
            return
        end local 0 // int opmode
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  opmode  I
    MethodParameters:
        Name  Flags
      opmode  

  public final void init(int, java.security.Key);
    descriptor: (ILjava/security/Key;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
         0: .line 1093
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            getstatic javax.crypto.JceSecurity.RANDOM:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;)V
         1: .line 1094
            return
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavax/crypto/Cipher;
            0    2     1  opmode  I
            0    2     2     key  Ljava/security/Key;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     

  public final void init(int, java.security.Key, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=5, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 1140
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1141
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1143
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1144
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 2 /* key */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;)V
         4: .line 1145
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/SecureRandom;)V
         5: .line 1146
            goto 10
         6: .line 1148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aconst_null
            aload 3 /* random */
            invokevirtual javax.crypto.Cipher.chooseProvider:(IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         7: .line 1149
            goto 10
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         8: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         9: .line 1151
            new java.security.InvalidKeyException
            dup
            aload 4 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.security.InvalidAlgorithmParameterException e
        10: .line 1155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
        11: .line 1156
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
        12: .line 1157
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Ljavax/crypto/Cipher;
            0   13     1  opmode  I
            0   13     2     key  Ljava/security/Key;
            0   13     3  random  Ljava/security/SecureRandom;
            9   10     4       e  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           6     7       8  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  

  public final void init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         0: .line 1212
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            getstatic javax.crypto.JceSecurity.RANDOM:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         1: .line 1213
            return
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavax/crypto/Cipher;
            0    2     1  opmode  I
            0    2     2     key  Ljava/security/Key;
            0    2     3  params  Ljava/security/spec/AlgorithmParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  

  public final void init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
        start local 4 // java.security.SecureRandom random
         0: .line 1266
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1267
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1269
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1270
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 2 /* key */
            aload 3 /* params */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
         4: .line 1271
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            aload 4 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         5: .line 1272
            goto 7
         6: .line 1273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            aconst_null
            aload 4 /* random */
            invokevirtual javax.crypto.Cipher.chooseProvider:(IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         7: .line 1276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
         8: .line 1277
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
         9: .line 1278
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljavax/crypto/Cipher;
            0   10     1  opmode  I
            0   10     2     key  Ljava/security/Key;
            0   10     3  params  Ljava/security/spec/AlgorithmParameterSpec;
            0   10     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  public final void init(int, java.security.Key, java.security.AlgorithmParameters);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
         0: .line 1333
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            getstatic javax.crypto.JceSecurity.RANDOM:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         1: .line 1334
            return
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavax/crypto/Cipher;
            0    2     1  opmode  I
            0    2     2     key  Ljava/security/Key;
            0    2     3  params  Ljava/security/AlgorithmParameters;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  

  public final void init(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
        start local 4 // java.security.SecureRandom random
         0: .line 1387
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1388
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1390
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1391
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 2 /* key */
            aload 3 /* params */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;Ljava/security/AlgorithmParameters;)V
         4: .line 1392
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            aload 4 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         5: .line 1393
            goto 7
         6: .line 1394
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aload 3 /* params */
            aload 4 /* random */
            invokevirtual javax.crypto.Cipher.chooseProvider:(IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         7: .line 1397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
         8: .line 1398
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
         9: .line 1399
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljavax/crypto/Cipher;
            0   10     1  opmode  I
            0   10     2     key  Ljava/security/Key;
            0   10     3  params  Ljava/security/AlgorithmParameters;
            0   10     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  public final void init(int, java.security.cert.Certificate);
    descriptor: (ILjava/security/cert/Certificate;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.cert.Certificate certificate
         0: .line 1460
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* certificate */
            getstatic javax.crypto.JceSecurity.RANDOM:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/cert/Certificate;Ljava/security/SecureRandom;)V
         1: .line 1461
            return
        end local 2 // java.security.cert.Certificate certificate
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Ljavax/crypto/Cipher;
            0    2     1       opmode  I
            0    2     2  certificate  Ljava/security/cert/Certificate;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
             Name  Flags
      opmode       
      certificate  

  public final void init(int, java.security.cert.Certificate, java.security.SecureRandom);
    descriptor: (ILjava/security/cert/Certificate;Ljava/security/SecureRandom;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=7, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // int opmode
        start local 2 // java.security.cert.Certificate certificate
        start local 3 // java.security.SecureRandom random
         0: .line 1523
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1524
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1528
            aload 2 /* certificate */
            instanceof java.security.cert.X509Certificate
            ifeq 16
         3: .line 1531
            aload 2 /* certificate */
            checkcast java.security.cert.X509Certificate
            astore 4 /* cert */
        start local 4 // java.security.cert.X509Certificate cert
         4: .line 1532
            aload 4 /* cert */
            invokevirtual java.security.cert.X509Certificate.getCriticalExtensionOIDs:()Ljava/util/Set;
            astore 5 /* critSet */
        start local 5 // java.util.Set critSet
         5: .line 1534
            aload 5 /* critSet */
            ifnull 16
            aload 5 /* critSet */
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 16
         6: .line 1535
            aload 5 /* critSet */
            ldc "2.5.29.15"
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 16
         7: .line 1536
            aload 4 /* cert */
            invokevirtual java.security.cert.X509Certificate.getKeyUsage:()[Z
            astore 6 /* keyUsageInfo */
        start local 6 // boolean[] keyUsageInfo
         8: .line 1539
            aload 6 /* keyUsageInfo */
            ifnull 16
         9: .line 1540
            iload 1 /* opmode */
            iconst_1
            if_icmpne 12
        10: .line 1541
            aload 6 /* keyUsageInfo */
            arraylength
            iconst_3
            if_icmple 12
        11: .line 1542
            aload 6 /* keyUsageInfo */
            iconst_3
            baload
            ifeq 15
        12: .line 1543
      StackMap locals: java.security.cert.X509Certificate java.util.Set boolean[]
      StackMap stack:
            iload 1 /* opmode */
            iconst_3
            if_icmpne 16
        13: .line 1544
            aload 6 /* keyUsageInfo */
            arraylength
            iconst_2
            if_icmple 16
        14: .line 1545
            aload 6 /* keyUsageInfo */
            iconst_2
            baload
            ifne 16
        15: .line 1546
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Wrong key usage"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // boolean[] keyUsageInfo
        end local 5 // java.util.Set critSet
        end local 4 // java.security.cert.X509Certificate cert
        16: .line 1552
      StackMap locals:
      StackMap stack:
            aload 2 /* certificate */
            ifnonnull 17
            aconst_null
            goto 18
      StackMap locals:
      StackMap stack:
        17: aload 2 /* certificate */
            invokevirtual java.security.cert.Certificate.getPublicKey:()Ljava/security/PublicKey;
        18: .line 1551
      StackMap locals:
      StackMap stack: java.security.PublicKey
            astore 4 /* publicKey */
        start local 4 // java.security.PublicKey publicKey
        19: .line 1554
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 23
        20: .line 1555
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 4 /* publicKey */
            invokevirtual javax.crypto.Cipher.checkCryptoPerm:(Ljavax/crypto/CipherSpi;Ljava/security/Key;)V
        21: .line 1556
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            iload 1 /* opmode */
            aload 4 /* publicKey */
            aload 3 /* random */
            invokevirtual javax.crypto.CipherSpi.engineInit:(ILjava/security/Key;Ljava/security/SecureRandom;)V
        22: .line 1557
            goto 27
        23: .line 1559
      StackMap locals: java.security.PublicKey
      StackMap stack:
            aload 0 /* this */
            iconst_4
            iload 1 /* opmode */
            aload 4 /* publicKey */
            aconst_null
            aconst_null
            aload 3 /* random */
            invokevirtual javax.crypto.Cipher.chooseProvider:(IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
        24: .line 1560
            goto 27
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
        25: astore 5 /* e */
        start local 5 // java.security.InvalidAlgorithmParameterException e
        26: .line 1562
            new java.security.InvalidKeyException
            dup
            aload 5 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.security.InvalidAlgorithmParameterException e
        27: .line 1566
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
        28: .line 1567
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
        29: .line 1568
            return
        end local 4 // java.security.PublicKey publicKey
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.cert.Certificate certificate
        end local 1 // int opmode
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   30     0          this  Ljavax/crypto/Cipher;
            0   30     1        opmode  I
            0   30     2   certificate  Ljava/security/cert/Certificate;
            0   30     3        random  Ljava/security/SecureRandom;
            4   16     4          cert  Ljava/security/cert/X509Certificate;
            5   16     5       critSet  Ljava/util/Set<Ljava/lang/String;>;
            8   16     6  keyUsageInfo  [Z
           19   30     4     publicKey  Ljava/security/PublicKey;
           26   27     5             e  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
          23    24      25  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
             Name  Flags
      opmode       
      certificate  
      random       

  private void checkCipherState();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 1576
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 6
         1: .line 1577
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 1578
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_1
            if_icmpeq 6
         4: .line 1581
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_2
            if_icmpeq 6
         5: .line 1582
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for encryption/decryption"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1586
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/crypto/Cipher;

  public final byte[] update(byte[]);
    descriptor: ([B)[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
         0: .line 1609
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1612
            aload 1 /* input */
            ifnonnull 3
         2: .line 1613
            new java.lang.IllegalArgumentException
            dup
            ldc "Null input buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1616
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 1617
            aload 1 /* input */
            arraylength
            ifne 6
         5: .line 1618
            aconst_null
            areturn
         6: .line 1620
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iconst_0
            aload 1 /* input */
            arraylength
            invokevirtual javax.crypto.CipherSpi.engineUpdate:([BII)[B
            areturn
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Ljavax/crypto/Cipher;
            0    7     1  input  [B
    MethodParameters:
       Name  Flags
      input  

  public final byte[] update(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
         0: .line 1648
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1651
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 1652
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 1653
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 1657
            iload 3 /* inputLen */
            ifne 7
         6: .line 1658
            aconst_null
            areturn
         7: .line 1660
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
            invokevirtual javax.crypto.CipherSpi.engineUpdate:([BII)[B
            areturn
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Ljavax/crypto/Cipher;
            0    8     1        input  [B
            0    8     2  inputOffset  I
            0    8     3     inputLen  I
    MethodParameters:
             Name  Flags
      input        
      inputOffset  
      inputLen     

  public final int update(byte[], int, int, byte[]);
    descriptor: ([BII[B)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
        start local 4 // byte[] output
         0: .line 1702
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1705
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 1706
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 1707
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1710
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 1711
            iload 3 /* inputLen */
            ifne 7
         6: .line 1712
            iconst_0
            ireturn
         7: .line 1714
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         8: .line 1715
            aload 4 /* output */
            iconst_0
         9: .line 1714
            invokevirtual javax.crypto.CipherSpi.engineUpdate:([BII[BI)I
            ireturn
        end local 4 // byte[] output
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Ljavax/crypto/Cipher;
            0   10     1        input  [B
            0   10     2  inputOffset  I
            0   10     3     inputLen  I
            0   10     4       output  [B
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
             Name  Flags
      input        
      inputOffset  
      inputLen     
      output       

  public final int update(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
        start local 4 // byte[] output
        start local 5 // int outputOffset
         0: .line 1760
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1763
            aload 1 /* input */
            ifnull 4
            iload 2 /* inputOffset */
            iflt 4
         2: .line 1764
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 4
            iload 3 /* inputLen */
            iflt 4
         3: .line 1765
            iload 5 /* outputOffset */
            ifge 5
         4: .line 1766
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 1769
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 1770
            iload 3 /* inputLen */
            ifne 8
         7: .line 1771
            iconst_0
            ireturn
         8: .line 1773
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         9: .line 1774
            aload 4 /* output */
            iload 5 /* outputOffset */
        10: .line 1773
            invokevirtual javax.crypto.CipherSpi.engineUpdate:([BII[BI)I
            ireturn
        end local 5 // int outputOffset
        end local 4 // byte[] output
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Ljavax/crypto/Cipher;
            0   11     1         input  [B
            0   11     2   inputOffset  I
            0   11     3      inputLen  I
            0   11     4        output  [B
            0   11     5  outputOffset  I
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
              Name  Flags
      input         
      inputOffset   
      inputLen      
      output        
      outputOffset  

  public final int update(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // java.nio.ByteBuffer input
        start local 2 // java.nio.ByteBuffer output
         0: .line 1817
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1819
            aload 1 /* input */
            ifnull 2
            aload 2 /* output */
            ifnonnull 3
         2: .line 1820
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Buffers must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1822
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 2 /* output */
            if_acmpne 5
         4: .line 1823
            new java.lang.IllegalArgumentException
            dup
            ldc "Input and output buffers must not be the same object, consider using buffer.duplicate()"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 1826
      StackMap locals:
      StackMap stack:
            aload 2 /* output */
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifeq 7
         6: .line 1827
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         7: .line 1830
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         8: .line 1831
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            aload 2 /* output */
            invokevirtual javax.crypto.CipherSpi.engineUpdate:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            ireturn
        end local 2 // java.nio.ByteBuffer output
        end local 1 // java.nio.ByteBuffer input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljavax/crypto/Cipher;
            0    9     1   input  Ljava/nio/ByteBuffer;
            0    9     2  output  Ljava/nio/ByteBuffer;
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      input   
      output  

  public final byte[] doFinal();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 1867
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1869
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         2: .line 1870
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aconst_null
            iconst_0
            iconst_0
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII)[B
            areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/crypto/Cipher;
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException

  public final int doFinal(byte[], int);
    descriptor: ([BI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] output
        start local 2 // int outputOffset
         0: .line 1920
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1923
            aload 1 /* output */
            ifnull 2
            iload 2 /* outputOffset */
            ifge 3
         2: .line 1924
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1927
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 1928
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aconst_null
            iconst_0
            iconst_0
            aload 1 /* output */
            iload 2 /* outputOffset */
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII[BI)I
            ireturn
        end local 2 // int outputOffset
        end local 1 // byte[] output
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Ljavax/crypto/Cipher;
            0    5     1        output  [B
            0    5     2  outputOffset  I
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.ShortBufferException, javax.crypto.BadPaddingException
    MethodParameters:
              Name  Flags
      output        
      outputOffset  

  public final byte[] doFinal(byte[]);
    descriptor: ([B)[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
         0: .line 1967
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1970
            aload 1 /* input */
            ifnonnull 3
         2: .line 1971
            new java.lang.IllegalArgumentException
            dup
            ldc "Null input buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1974
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 1975
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iconst_0
            aload 1 /* input */
            arraylength
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII)[B
            areturn
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljavax/crypto/Cipher;
            0    5     1  input  [B
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
       Name  Flags
      input  

  public final byte[] doFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
         0: .line 2018
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2021
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 2022
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 2023
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 2026
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 2027
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII)[B
            areturn
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Ljavax/crypto/Cipher;
            0    6     1        input  [B
            0    6     2  inputOffset  I
            0    6     3     inputLen  I
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
             Name  Flags
      input        
      inputOffset  
      inputLen     

  public final int doFinal(byte[], int, int, byte[]);
    descriptor: ([BII[B)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
        start local 4 // byte[] output
         0: .line 2086
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2089
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 2090
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 2091
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 2094
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 2095
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         6: .line 2096
            aload 4 /* output */
            iconst_0
         7: .line 2095
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII[BI)I
            ireturn
        end local 4 // byte[] output
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Ljavax/crypto/Cipher;
            0    8     1        input  [B
            0    8     2  inputOffset  I
            0    8     3     inputLen  I
            0    8     4       output  [B
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
             Name  Flags
      input        
      inputOffset  
      inputLen     
      output       

  public final int doFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] input
        start local 2 // int inputOffset
        start local 3 // int inputLen
        start local 4 // byte[] output
        start local 5 // int outputOffset
         0: .line 2159
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2162
            aload 1 /* input */
            ifnull 4
            iload 2 /* inputOffset */
            iflt 4
         2: .line 2163
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 4
            iload 3 /* inputLen */
            iflt 4
         3: .line 2164
            iload 5 /* outputOffset */
            ifge 5
         4: .line 2165
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 2169
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         7: .line 2170
            aload 4 /* output */
            iload 5 /* outputOffset */
         8: .line 2169
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:([BII[BI)I
            ireturn
        end local 5 // int outputOffset
        end local 4 // byte[] output
        end local 3 // int inputLen
        end local 2 // int inputOffset
        end local 1 // byte[] input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Ljavax/crypto/Cipher;
            0    9     1         input  [B
            0    9     2   inputOffset  I
            0    9     3      inputLen  I
            0    9     4        output  [B
            0    9     5  outputOffset  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
              Name  Flags
      input         
      inputOffset   
      inputLen      
      output        
      outputOffset  

  public final int doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.crypto.Cipher this
        start local 1 // java.nio.ByteBuffer input
        start local 2 // java.nio.ByteBuffer output
         0: .line 2231
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2233
            aload 1 /* input */
            ifnull 2
            aload 2 /* output */
            ifnonnull 3
         2: .line 2234
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Buffers must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2236
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 2 /* output */
            if_acmpne 5
         4: .line 2237
            new java.lang.IllegalArgumentException
            dup
            ldc "Input and output buffers must not be the same object, consider using buffer.duplicate()"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2240
      StackMap locals:
      StackMap stack:
            aload 2 /* output */
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifeq 7
         6: .line 2241
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         7: .line 2244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         8: .line 2245
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            aload 2 /* output */
            invokevirtual javax.crypto.CipherSpi.engineDoFinal:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            ireturn
        end local 2 // java.nio.ByteBuffer output
        end local 1 // java.nio.ByteBuffer input
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljavax/crypto/Cipher;
            0    9     1   input  Ljava/nio/ByteBuffer;
            0    9     2  output  Ljava/nio/ByteBuffer;
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      input   
      output  

  public final byte[] wrap(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.crypto.Cipher this
        start local 1 // java.security.Key key
         0: .line 2269
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 5
         1: .line 2270
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 2271
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_3
            if_icmpeq 5
         4: .line 2274
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for wrapping keys"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 2280
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* key */
            invokevirtual javax.crypto.CipherSpi.engineWrap:(Ljava/security/Key;)[B
            areturn
        end local 1 // java.security.Key key
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/crypto/Cipher;
            0    7     1   key  Ljava/security/Key;
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  public final java.security.Key unwrap(byte[], java.lang.String, int);
    descriptor: ([BLjava/lang/String;I)Ljava/security/Key;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.crypto.Cipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String wrappedKeyAlgorithm
        start local 3 // int wrappedKeyType
         0: .line 2313
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 5
         1: .line 2314
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 2315
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_4
            if_icmpeq 5
         4: .line 2318
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for unwrapping keys"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2322
      StackMap locals:
      StackMap stack:
            iload 3 /* wrappedKeyType */
            iconst_3
            if_icmpeq 9
         6: .line 2323
            iload 3 /* wrappedKeyType */
            iconst_2
            if_icmpeq 9
         7: .line 2324
            iload 3 /* wrappedKeyType */
            iconst_1
            if_icmpeq 9
         8: .line 2325
            new java.security.InvalidParameterException
            dup
            ldc "Invalid key type"
            invokespecial java.security.InvalidParameterException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 2328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
        10: .line 2329
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* wrappedKey */
        11: .line 2330
            aload 2 /* wrappedKeyAlgorithm */
        12: .line 2331
            iload 3 /* wrappedKeyType */
        13: .line 2329
            invokevirtual javax.crypto.CipherSpi.engineUnwrap:([BLjava/lang/String;I)Ljava/security/Key;
            areturn
        end local 3 // int wrappedKeyType
        end local 2 // java.lang.String wrappedKeyAlgorithm
        end local 1 // byte[] wrappedKey
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   14     0                 this  Ljavax/crypto/Cipher;
            0   14     1           wrappedKey  [B
            0   14     2  wrappedKeyAlgorithm  Ljava/lang/String;
            0   14     3       wrappedKeyType  I
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      wrappedKey           
      wrappedKeyAlgorithm  
      wrappedKeyType       

  private java.security.spec.AlgorithmParameterSpec getAlgorithmParameterSpec(java.security.AlgorithmParameters);
    descriptor: (Ljava/security/AlgorithmParameters;)Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.crypto.Cipher this
        start local 1 // java.security.AlgorithmParameters params
         0: .line 2337
            aload 1 /* params */
            ifnonnull 2
         1: .line 2338
            aconst_null
            areturn
         2: .line 2341
      StackMap locals:
      StackMap stack:
            aload 1 /* params */
            invokevirtual java.security.AlgorithmParameters.getAlgorithm:()Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 2 /* alg */
        start local 2 // java.lang.String alg
         3: .line 2343
            aload 2 /* alg */
            ldc "RC2"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 2344
            aload 1 /* params */
            ldc Ljavax/crypto/spec/RC2ParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         5: .line 2347
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* alg */
            ldc "RC5"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 7
         6: .line 2348
            aload 1 /* params */
            ldc Ljavax/crypto/spec/RC5ParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         7: .line 2351
      StackMap locals:
      StackMap stack:
            aload 2 /* alg */
            ldc "PBE"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 9
         8: .line 2352
            aload 1 /* params */
            ldc Ljavax/crypto/spec/PBEParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         9: .line 2355
      StackMap locals:
      StackMap stack:
            aload 2 /* alg */
            ldc "DES"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 11
        10: .line 2356
            aload 1 /* params */
            ldc Ljavax/crypto/spec/IvParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
        11: .line 2358
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // java.lang.String alg
        end local 1 // java.security.AlgorithmParameters params
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Ljavax/crypto/Cipher;
            0   12     1  params  Ljava/security/AlgorithmParameters;
            3   12     2     alg  Ljava/lang/String;
    Exceptions:
      throws java.security.spec.InvalidParameterSpecException
    MethodParameters:
        Name  Flags
      params  

  private static javax.crypto.CryptoPermission getConfiguredPermission(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/crypto/CryptoPermission;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 2364
            aload 0 /* transformation */
            ifnonnull 1
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         1: .line 2365
      StackMap locals:
      StackMap stack:
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.tokenizeTransformation:(Ljava/lang/String;)[Ljava/lang/String;
            astore 1 /* parts */
        start local 1 // java.lang.String[] parts
         2: .line 2366
            getstatic javax.crypto.JceSecurityManager.INSTANCE:Ljavax/crypto/JceSecurityManager;
            aload 1 /* parts */
            iconst_0
            aaload
            invokevirtual javax.crypto.JceSecurityManager.getCryptoPermission:(Ljava/lang/String;)Ljavax/crypto/CryptoPermission;
            areturn
        end local 1 // java.lang.String[] parts
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0  transformation  Ljava/lang/String;
            2    3     1           parts  [Ljava/lang/String;
    Exceptions:
      throws java.lang.NullPointerException, java.security.NoSuchAlgorithmException
    MethodParameters:
                Name  Flags
      transformation  

  public static final int getMaxAllowedKeyLength(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 2390
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getConfiguredPermission:(Ljava/lang/String;)Ljavax/crypto/CryptoPermission;
            astore 1 /* cp */
        start local 1 // javax.crypto.CryptoPermission cp
         1: .line 2391
            aload 1 /* cp */
            invokevirtual javax.crypto.CryptoPermission.getMaxKeySize:()I
            ireturn
        end local 1 // javax.crypto.CryptoPermission cp
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0  transformation  Ljava/lang/String;
            1    2     1              cp  Ljavax/crypto/CryptoPermission;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
                Name  Flags
      transformation  

  public static final java.security.spec.AlgorithmParameterSpec getMaxAllowedParameterSpec(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 2414
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getConfiguredPermission:(Ljava/lang/String;)Ljavax/crypto/CryptoPermission;
            astore 1 /* cp */
        start local 1 // javax.crypto.CryptoPermission cp
         1: .line 2415
            aload 1 /* cp */
            invokevirtual javax.crypto.CryptoPermission.getAlgorithmParameterSpec:()Ljava/security/spec/AlgorithmParameterSpec;
            areturn
        end local 1 // javax.crypto.CryptoPermission cp
        end local 0 // java.lang.String transformation
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0  transformation  Ljava/lang/String;
            1    2     1              cp  Ljavax/crypto/CryptoPermission;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
                Name  Flags
      transformation  
}
SourceFile: "Cipher.java"
NestMembers:
  javax.crypto.Cipher$Transform
InnerClasses:
  public Service = java.security.Provider$Service of java.security.Provider
  private Transform = javax.crypto.Cipher$Transform of javax.crypto.Cipher