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

  private static final sun.security.util.Debug pdebug;
    descriptor: Lsun/security/util/Debug;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final boolean skipDebug;
    descriptor: Z
    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 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 175
            ldc "jca"
            ldc "Cipher"
            invokestatic sun.security.util.Debug.getInstance:(Ljava/lang/String;Ljava/lang/String;)Lsun/security/util/Debug;
         1: .line 174
            putstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
         2: .line 178
            ldc "provider"
            ldc "Provider"
            invokestatic sun.security.util.Debug.getInstance:(Ljava/lang/String;Ljava/lang/String;)Lsun/security/util/Debug;
         3: .line 177
            putstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
         4: .line 180
            ldc "engine="
            invokestatic sun.security.util.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 6
            ldc "cipher"
            invokestatic sun.security.util.Debug.isOn:(Ljava/lang/String;)Z
            ifne 6
         5: .line 179
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: putstatic javax.crypto.Cipher.skipDebug:Z
         8: .line 774
            bipush 10
            putstatic javax.crypto.Cipher.warnCount:I
         9: .line 858
            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=3, 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 269
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 236
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 240
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 275
            getstatic javax.crypto.JceSecurityManager.INSTANCE:Ljavax/crypto/JceSecurityManager;
            aload 2 /* provider */
            invokevirtual javax.crypto.JceSecurityManager.isCallerTrusted:(Ljava/security/Provider;)Z
            ifne 5
         4: .line 276
            new java.lang.IllegalArgumentException
            dup
            ldc "Cannot construct cipher"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 278
      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 279
            aload 0 /* this */
            aload 2 /* provider */
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
         7: .line 280
            aload 0 /* this */
            aload 3 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         8: .line 281
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         9: .line 282
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
        10: .line 283
            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 291
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 236
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 240
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 292
            aload 0 /* this */
            aload 1 /* cipherSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
         4: .line 293
            aload 0 /* this */
            aload 2 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         5: .line 294
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         6: .line 295
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
         7: .line 296
            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 298
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 236
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         2: .line 240
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.opmode:I
         3: .line 301
            aload 0 /* this */
            aload 1 /* firstSpi */
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
         4: .line 302
            aload 0 /* this */
            aload 2 /* firstService */
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
         5: .line 303
            aload 0 /* this */
            aload 3 /* serviceIterator */
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
         6: .line 304
            aload 0 /* this */
            aload 5 /* transforms */
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
         7: .line 305
            aload 0 /* this */
            aload 4 /* transformation */
            putfield javax.crypto.Cipher.transformation:Ljava/lang/String;
         8: .line 306
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield javax.crypto.Cipher.lock:Ljava/lang/Object;
         9: .line 307
            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=6, locals=4, args_size=1
        start local 0 // java.lang.String transformation
         0: .line 311
            aload 0 /* transformation */
            ifnonnull 2
         1: .line 312
            new java.security.NoSuchAlgorithmException
            dup
            ldc "No transformation given"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 321
      StackMap locals:
      StackMap stack:
            iconst_3
            anewarray java.lang.String
            astore 1 /* parts */
        start local 1 // java.lang.String[] parts
         3: .line 322
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         4: .line 323
            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 325
            goto 7
         6: .line 326
      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 325
      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 328
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ifeq 9
            iload 2 /* count */
            iconst_2
            if_icmpne 12
         9: .line 329
      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 331
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 329
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 334
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            iconst_3
            if_icmpne 19
            aload 3 /* parser */
            invokevirtual java.util.StringTokenizer.hasMoreTokens:()Z
            ifeq 19
        13: .line 335
            aload 1 /* parts */
            iconst_2
            new java.lang.StringBuilder
            dup
            aload 1 /* parts */
            iconst_2
            aaload
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* parser */
            ldc "\r\n"
            invokevirtual java.util.StringTokenizer.nextToken:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
        14: .line 337
            goto 19
      StackMap locals:
      StackMap stack: java.util.NoSuchElementException
        15: pop
        16: .line 338
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid transformation format:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        17: .line 339
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        18: .line 338
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 341
      StackMap locals:
      StackMap stack:
            aload 1 /* parts */
            iconst_0
            aaload
            ifnull 20
            aload 1 /* parts */
            iconst_0
            aaload
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 23
        20: .line 342
      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
        21: .line 344
            aload 0 /* transformation */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        22: .line 342
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 346
      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   24     0  transformation  Ljava/lang/String;
            3   24     1           parts  [Ljava/lang/String;
            4   24     2           count  I
            5   24     3          parser  Ljava/util/StringTokenizer;
      Exception table:
        from    to  target  type
           5    14      15  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 440
            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 442
            aload 1 /* parts */
            iconst_0
            aaload
            astore 2 /* alg */
        start local 2 // java.lang.String alg
         2: .line 443
            aload 1 /* parts */
            iconst_1
            aaload
            astore 3 /* mode */
        start local 3 // java.lang.String mode
         3: .line 444
            aload 1 /* parts */
            iconst_2
            aaload
            astore 4 /* pad */
        start local 4 // java.lang.String pad
         4: .line 445
            aload 3 /* mode */
            ifnull 6
            aload 3 /* mode */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 6
         5: .line 446
            aconst_null
            astore 3 /* mode */
         6: .line 448
      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.isEmpty:()Z
            ifeq 8
         7: .line 449
            aconst_null
            astore 4 /* pad */
         8: .line 452
      StackMap locals:
      StackMap stack:
            aload 3 /* mode */
            ifnonnull 11
            aload 4 /* pad */
            ifnonnull 11
         9: .line 454
            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 455
            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 458
      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 459
            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 460
            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 461
            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 462
            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 463
            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 470
            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 471
            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 472
            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 473
            aload 3 /* tr */
            areturn
        end local 3 // javax.crypto.Cipher$Transform tr
         5: .line 471
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 476
            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 531
            aload 0 /* transformation */
            ifnull 1
            aload 0 /* transformation */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 2
         1: .line 532
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
            ldc "Null or empty transformation"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 534
      StackMap locals:
      StackMap stack:
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getTransforms:(Ljava/lang/String;)Ljava/util/List;
            astore 1 /* transforms */
        start local 1 // java.util.List transforms
         3: .line 535
            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
         4: .line 536
            aload 1 /* transforms */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: java.lang.String java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         5: 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
         6: .line 537
            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
         7: .line 536
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         8: .line 539
            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
         9: .line 542
            aload 3 /* services */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4 /* t */
        start local 4 // java.util.Iterator t
        10: .line 543
            aconst_null
            astore 5 /* failure */
        start local 5 // java.lang.Exception failure
        11: .line 544
            goto 27
        12: .line 545
      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
        13: .line 546
            aload 6 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            invokestatic javax.crypto.JceSecurity.canUseProvider:(Ljava/security/Provider;)Z
            ifne 15
        14: .line 547
            goto 27
        15: .line 549
      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
        16: .line 550
            aload 7 /* tr */
            ifnonnull 18
        17: .line 552
            goto 27
        18: .line 554
      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
        19: .line 555
            iload 8 /* canuse */
            ifne 21
        20: .line 557
            goto 27
        21: .line 563
      StackMap locals: int
      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 564
            aload 7 /* tr */
            aload 9 /* spi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        23: .line 566
            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
        24: areturn
        end local 9 // javax.crypto.CipherSpi spi
        25: .line 567
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 9 /* e */
        start local 9 // java.lang.Exception e
        26: .line 568
            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 544
      StackMap locals:
      StackMap stack:
            aload 4 /* t */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        28: .line 571
            new java.security.NoSuchAlgorithmException
            dup
        29: .line 572
            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 571
            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;
            3   31     1      transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
            4   31     2  cipherServices  Ljava/util/List<Lsun/security/jca/ServiceId;>;
            6    7     3       transform  Ljavax/crypto/Cipher$Transform;
            9   31     3        services  Ljava/util/List<Ljava/security/Provider$Service;>;
           10   31     4               t  Ljava/util/Iterator<Ljava/security/Provider$Service;>;
           11   31     5         failure  Ljava/lang/Exception;
           13   27     6               s  Ljava/security/Provider$Service;
           16   27     7              tr  Ljavax/crypto/Cipher$Transform;
           19   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 631
            aload 0 /* transformation */
            ifnull 1
            aload 0 /* transformation */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 2
         1: .line 632
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
            ldc "Null or empty transformation"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 634
      StackMap locals:
      StackMap stack:
            aload 1 /* provider */
            ifnull 3
            aload 1 /* provider */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 4
         3: .line 635
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Missing provider"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 637
      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
         5: .line 638
            aload 2 /* p */
            ifnonnull 9
         6: .line 639
            new java.security.NoSuchProviderException
            dup
            new java.lang.StringBuilder
            dup
            ldc "No such provider: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         7: .line 640
            aload 1 /* provider */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 639
            invokespecial java.security.NoSuchProviderException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 642
      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   10     0  transformation  Ljava/lang/String;
            0   10     1        provider  Ljava/lang/String;
            5   10     2               p  Ljava/security/Provider;
    Exceptions:
      throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, javax.crypto.NoSuchPaddingException
    MethodParameters:
                Name  Flags
      transformation  
      provider        

  private java.lang.String getProviderName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 646
            aload 0 /* this */
            getfield javax.crypto.Cipher.provider:Ljava/security/Provider;
            ifnonnull 1
            ldc "(no provider)"
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javax.crypto.Cipher.provider:Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/crypto/Cipher;

  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 698
            aload 0 /* transformation */
            ifnull 1
            aload 0 /* transformation */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 2
         1: .line 699
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
            ldc "Null or empty transformation"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 701
      StackMap locals:
      StackMap stack:
            aload 1 /* provider */
            ifnonnull 4
         3: .line 702
            new java.lang.IllegalArgumentException
            dup
            ldc "Missing provider"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 704
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* failure */
        start local 2 // java.lang.Exception failure
         5: .line 705
            aload 0 /* transformation */
            invokestatic javax.crypto.Cipher.getTransforms:(Ljava/lang/String;)Ljava/util/List;
            astore 3 /* transforms */
        start local 3 // java.util.List transforms
         6: .line 706
            iconst_0
            istore 4 /* providerChecked */
        start local 4 // boolean providerChecked
         7: .line 707
            aconst_null
            astore 5 /* paddingError */
        start local 5 // java.lang.String paddingError
         8: .line 708
            aload 3 /* transforms */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 35
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String top java.util.Iterator
      StackMap stack:
         9: 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
        10: .line 709
            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
        11: .line 710
            aload 8 /* s */
            ifnonnull 13
        12: .line 711
            goto 35
        13: .line 713
      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 21
        14: .line 718
            aload 1 /* provider */
            invokestatic javax.crypto.JceSecurity.getVerificationResult:(Ljava/security/Provider;)Ljava/lang/Exception;
            astore 9 /* ve */
        start local 9 // java.lang.Exception ve
        15: .line 719
            aload 9 /* ve */
            ifnull 20
        16: .line 720
            new java.lang.StringBuilder
            dup
            ldc "JCE cannot authenticate the provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        17: .line 721
            aload 1 /* provider */
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        18: .line 720
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 10 /* msg */
        start local 10 // java.lang.String msg
        19: .line 722
            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
        20: .line 724
      StackMap locals: java.lang.Exception
      StackMap stack:
            iconst_1
            istore 4 /* providerChecked */
        end local 9 // java.lang.Exception ve
        21: .line 726
      StackMap locals:
      StackMap stack:
            aload 6 /* tr */
            aload 8 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsMode:(Ljava/security/Provider$Service;)I
            ifne 23
        22: .line 727
            goto 35
        23: .line 729
      StackMap locals:
      StackMap stack:
            aload 6 /* tr */
            aload 8 /* s */
            invokevirtual javax.crypto.Cipher$Transform.supportsPadding:(Ljava/security/Provider$Service;)I
            ifne 26
        24: .line 730
            aload 6 /* tr */
            getfield javax.crypto.Cipher$Transform.pad:Ljava/lang/String;
            astore 5 /* paddingError */
        25: .line 731
            goto 35
        26: .line 734
      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
        27: .line 735
            aload 6 /* tr */
            aload 9 /* spi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        28: .line 736
            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
        29: .line 737
            aload 10 /* cipher */
            aload 8 /* s */
            invokevirtual java.security.Provider$Service.getProvider:()Ljava/security/Provider;
            putfield javax.crypto.Cipher.provider:Ljava/security/Provider;
        30: .line 738
            aload 10 /* cipher */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        31: .line 739
            aload 10 /* cipher */
        32: areturn
        end local 10 // javax.crypto.Cipher cipher
        end local 9 // javax.crypto.CipherSpi spi
        33: .line 740
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 9 /* e */
        start local 9 // java.lang.Exception e
        34: .line 741
            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
        35: .line 708
      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 9
        36: .line 746
            aload 2 /* failure */
            instanceof javax.crypto.NoSuchPaddingException
            ifeq 38
        37: .line 747
            aload 2 /* failure */
            checkcast javax.crypto.NoSuchPaddingException
            athrow
        38: .line 749
      StackMap locals: java.lang.String java.security.Provider java.lang.Exception java.util.List int java.lang.String
      StackMap stack:
            aload 5 /* paddingError */
            ifnull 42
        39: .line 750
            new javax.crypto.NoSuchPaddingException
            dup
        40: .line 751
            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;
        41: .line 750
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        42: .line 753
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
        43: .line 754
            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 */
        44: .line 753
            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   45     0   transformation  Ljava/lang/String;
            0   45     1         provider  Ljava/security/Provider;
            5   45     2          failure  Ljava/lang/Exception;
            6   45     3       transforms  Ljava/util/List<Ljavax/crypto/Cipher$Transform;>;
            7   45     4  providerChecked  Z
            8   45     5     paddingError  Ljava/lang/String;
           10   35     6               tr  Ljavax/crypto/Cipher$Transform;
           11   35     8                s  Ljava/security/Provider$Service;
           15   21     9               ve  Ljava/lang/Exception;
           19   20    10              msg  Ljava/lang/String;
           27   33     9              spi  Ljavax/crypto/CipherSpi;
           29   33    10           cipher  Ljavax/crypto/Cipher;
           34   35     9                e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          26    32      33  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 760
            invokestatic javax.crypto.JceSecurity.isRestricted:()Z
            ifne 4
         1: .line 761
            aload 0 /* this */
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            putfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
         2: .line 762
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
         3: .line 763
            return
         4: .line 765
      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 767
            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 768
            aload 1 /* exmechName */
            ifnull 8
         7: .line 769
            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 771
      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 782
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 2
         1: .line 783
            return
         2: .line 785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         3: .line 786
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         4: .line 787
            aload 1
            monitorexit
         5: return
         6: .line 789
      StackMap locals: java.lang.Object
      StackMap stack:
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 13
         7: .line 790
            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 791
            iload 2 /* w */
            iflt 13
         9: .line 792
            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 794
            iload 2 /* w */
            ifne 12
        11: .line 795
            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 798
      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 801
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* lastException */
        start local 2 // java.lang.Exception lastException
        14: .line 802
            goto 46
        15: .line 805
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnull 21
        16: .line 806
            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 807
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
            astore 4 /* thisSpi */
        start local 4 // javax.crypto.CipherSpi thisSpi
        18: .line 808
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        19: .line 809
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
        20: .line 810
            goto 23
        end local 4 // javax.crypto.CipherSpi thisSpi
        end local 3 // java.security.Provider$Service s
        21: .line 811
      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 812
            aconst_null
            astore 4 /* thisSpi */
        start local 4 // javax.crypto.CipherSpi thisSpi
        23: .line 814
      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 815
            goto 46
        25: .line 817
      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 818
            aload 5 /* tr */
            ifnonnull 28
        27: .line 820
            goto 46
        28: .line 822
      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 823
            goto 46
        30: .line 826
      StackMap locals:
      StackMap stack:
            aload 4 /* thisSpi */
            ifnonnull 35
        31: .line 827
            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 828
            aload 6 /* obj */
            instanceof javax.crypto.CipherSpi
            ifne 34
        33: .line 829
            goto 46
        34: .line 831
      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 833
      StackMap locals:
      StackMap stack:
            aload 5 /* tr */
            aload 4 /* thisSpi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        36: .line 834
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        37: .line 835
            aload 0 /* this */
            aload 4 /* thisSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
        38: .line 836
            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 838
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        40: .line 839
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
        41: .line 840
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
        42: .line 841
            aload 1
            monitorexit
        43: return
        44: .line 842
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 6 /* e */
        start local 6 // java.lang.Exception e
        45: .line 843
            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 802
      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 846
            new java.security.ProviderException
            dup
        48: .line 847
            ldc "Could not construct CipherSpi instance"
        49: .line 846
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            astore 3 /* e */
        start local 3 // java.security.ProviderException e
        50: .line 848
            aload 2 /* lastException */
            ifnull 52
        51: .line 849
            aload 3 /* e */
            aload 2 /* lastException */
            invokevirtual java.security.ProviderException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        52: .line 851
      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 785
      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 864
            iload 2 /* type */
            tableswitch { // 1 - 4
                    1: 1
                    2: 4
                    3: 7
                    4: 10
              default: 13
          }
         1: .line 866
      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 867
            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 868
            goto 14
         4: .line 870
      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 871
            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 872
            goto 14
         7: .line 874
      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 875
            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 876
            goto 14
        10: .line 878
      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 879
            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 880
            goto 14
        13: .line 882
      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 884
      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 890
            aload 0 /* this */
            getfield javax.crypto.Cipher.lock:Ljava/lang/Object;
            dup
            astore 7
            monitorenter
         1: .line 891
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 5
         2: .line 892
            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 893
            aload 7
            monitorexit
         4: return
         5: .line 895
      StackMap locals: java.lang.Object
      StackMap stack:
            aconst_null
            astore 8 /* lastException */
        start local 8 // java.lang.Exception lastException
         6: .line 896
            goto 41
         7: .line 899
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
            ifnull 13
         8: .line 900
            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 901
            aload 0 /* this */
            getfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
            astore 10 /* thisSpi */
        start local 10 // javax.crypto.CipherSpi thisSpi
        10: .line 902
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        11: .line 903
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstSpi:Ljavax/crypto/CipherSpi;
        12: .line 904
            goto 15
        end local 10 // javax.crypto.CipherSpi thisSpi
        end local 9 // java.security.Provider$Service s
        13: .line 905
      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 906
            aconst_null
            astore 10 /* thisSpi */
        start local 10 // javax.crypto.CipherSpi thisSpi
        15: .line 909
      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 910
            goto 41
        17: .line 912
      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 913
            goto 41
        19: .line 915
      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 916
            aload 11 /* tr */
            ifnonnull 22
        21: .line 918
            goto 41
        22: .line 920
      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 921
            goto 41
        24: .line 924
      StackMap locals:
      StackMap stack:
            aload 10 /* thisSpi */
            ifnonnull 26
        25: .line 925
            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 927
      StackMap locals:
      StackMap stack:
            aload 11 /* tr */
            aload 10 /* thisSpi */
            invokevirtual javax.crypto.Cipher$Transform.setModePadding:(Ljavax/crypto/CipherSpi;)V
        27: .line 928
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.initCryptoPermission:()V
        28: .line 929
            aload 0 /* this */
            aload 10 /* thisSpi */
            iload 1 /* initType */
            iload 2 /* opmode */
            aload 3 /* key */
            aload 4 /* paramSpec */
        29: .line 930
            aload 5 /* params */
            aload 6 /* random */
        30: .line 929
            invokevirtual javax.crypto.Cipher.implInit:(Ljavax/crypto/CipherSpi;IILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
        31: .line 931
            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 932
            aload 0 /* this */
            aload 10 /* thisSpi */
            putfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
        33: .line 933
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.firstService:Ljava/security/Provider$Service;
        34: .line 934
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.serviceIterator:Ljava/util/Iterator;
        35: .line 935
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.Cipher.transforms:Ljava/util/List;
        36: .line 936
            aload 7
            monitorexit
        37: return
        38: .line 937
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 12 /* e */
        start local 12 // java.lang.Exception e
        39: .line 942
            aload 8 /* lastException */
            ifnonnull 41
        40: .line 943
            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 896
      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 948
            aload 8 /* lastException */
            instanceof java.security.InvalidKeyException
            ifeq 44
        43: .line 949
            aload 8 /* lastException */
            checkcast java.security.InvalidKeyException
            athrow
        44: .line 951
      StackMap locals:
      StackMap stack:
            aload 8 /* lastException */
            instanceof java.security.InvalidAlgorithmParameterException
            ifeq 46
        45: .line 952
            aload 8 /* lastException */
            checkcast java.security.InvalidAlgorithmParameterException
            athrow
        46: .line 954
      StackMap locals:
      StackMap stack:
            aload 8 /* lastException */
            instanceof java.lang.RuntimeException
            ifeq 48
        47: .line 955
            aload 8 /* lastException */
            checkcast java.lang.RuntimeException
            athrow
        48: .line 957
      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 958
            new java.security.InvalidKeyException
            dup
        52: .line 959
            new java.lang.StringBuilder
            dup
            ldc "No installed provider supports this key: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        53: .line 960
            aload 9 /* kName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        54: .line 959
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        55: .line 960
            aload 8 /* lastException */
        56: .line 958
            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 890
      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 970
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 971
            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 984
            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 994
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 995
            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 1020
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 2
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 2
         1: .line 1021
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1023
      StackMap locals:
      StackMap stack:
            iload 1 /* inputLen */
            ifge 4
         3: .line 1024
            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 1027
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 1028
            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 1043
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 1044
            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 1059
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 1060
            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 1070
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         1: .line 1071
            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 1079
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 1080
            return
         2: .line 1085
      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 1086
            goto 8
        end local 3 // java.security.spec.AlgorithmParameterSpec params
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         4: pop
         5: .line 1087
            new java.security.InvalidKeyException
            dup
         6: .line 1088
            ldc "Unsupported default algorithm parameters"
         7: .line 1087
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // java.security.spec.AlgorithmParameterSpec params
         8: .line 1090
      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 1091
            new java.security.InvalidKeyException
            dup
        10: .line 1092
            ldc "Illegal key size or default parameters"
        11: .line 1091
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 1094
      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 1099
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 1100
            return
         2: .line 1103
      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 1104
            new java.security.InvalidKeyException
            dup
            ldc "Illegal key size"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1106
      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 1107
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "Illegal parameters"
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1109
      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 1114
            aload 0 /* this */
            getfield javax.crypto.Cipher.cryptoPerm:Ljavax/crypto/CryptoPermission;
            getstatic javax.crypto.CryptoAllPermission.INSTANCE:Ljavax/crypto/CryptoAllPermission;
            if_acmpne 2
         1: .line 1115
            return
         2: .line 1120
      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 1121
            goto 8
        end local 4 // java.security.spec.AlgorithmParameterSpec pSpec
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         4: pop
         5: .line 1122
            new java.security.InvalidAlgorithmParameterException
            dup
         6: .line 1123
            ldc "Failed to retrieve algorithm parameter specification"
         7: .line 1122
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // java.security.spec.AlgorithmParameterSpec pSpec
         8: .line 1125
      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 1126
            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 1131
            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 1132
            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 1137
            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 1138
            iload 7 /* index */
            iconst_m1
            if_icmpeq 6
         4: .line 1139
            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 1140
            goto 7
        end local 6 // java.lang.String algComponent
         6: .line 1141
      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 1144
      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 1143
            astore 8 /* checkPerm */
        start local 8 // javax.crypto.CryptoPermission checkPerm
         9: .line 1146
            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 1147
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 14
        11: .line 1148
            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 1149
            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 1150
            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 1152
      StackMap locals: javax.crypto.CryptoPermission
      StackMap stack:
            iconst_0
            ireturn
        15: .line 1154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.exmech:Ljavax/crypto/ExemptionMechanism;
            ifnonnull 17
        16: .line 1155
            iconst_1
            ireturn
        17: .line 1158
      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 1159
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 20
        19: .line 1160
            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 1162
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        21: .line 1164
      StackMap locals:
      StackMap stack: javax.crypto.ExemptionMechanismException
            astore 9 /* eme */
        start local 9 // javax.crypto.ExemptionMechanismException eme
        22: .line 1165
            getstatic javax.crypto.Cipher.debug:Lsun/security/util/Debug;
            ifnull 27
        23: .line 1166
            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 1167
            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 1166
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        26: .line 1168
            aload 9 /* eme */
            invokevirtual javax.crypto.ExemptionMechanismException.printStackTrace:()V
        27: .line 1170
      StackMap locals: javax.crypto.ExemptionMechanismException
      StackMap stack:
            iconst_0
            ireturn
        end local 9 // javax.crypto.ExemptionMechanismException eme
        28: .line 1172
      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 1178
            iload 0 /* opmode */
            iconst_1
            if_icmplt 1
            iload 0 /* opmode */
            iconst_4
            if_icmple 2
         1: .line 1179
      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 1181
      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 1236
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;)V
         1: .line 1237
            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 1291
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1292
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1294
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1295
            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 1296
            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 1297
            goto 10
         6: .line 1299
      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 1300
            goto 10
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         8: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         9: .line 1302
            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 1306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
        11: .line 1307
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
        12: .line 1309
            getstatic javax.crypto.Cipher.skipDebug:Z
            ifne 14
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            ifnull 14
        13: .line 1310
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        14: .line 1312
      StackMap locals:
      StackMap stack:
            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   15     0    this  Ljavax/crypto/Cipher;
            0   15     1  opmode  I
            0   15     2     key  Ljava/security/Key;
            0   15     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 1375
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         1: .line 1376
            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 1437
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1438
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1440
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1441
            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 1442
            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 1443
            goto 7
         6: .line 1444
      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 1447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
         8: .line 1448
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
         9: .line 1450
            getstatic javax.crypto.Cipher.skipDebug:Z
            ifne 11
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            ifnull 11
        10: .line 1451
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        11: .line 1453
      StackMap locals:
      StackMap stack:
            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   12     0    this  Ljavax/crypto/Cipher;
            0   12     1  opmode  I
            0   12     2     key  Ljava/security/Key;
            0   12     3  params  Ljava/security/spec/AlgorithmParameterSpec;
            0   12     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 1516
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* params */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
         1: .line 1517
            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 1578
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1579
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1581
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 6
         3: .line 1582
            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 1583
            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 1584
            goto 7
         6: .line 1585
      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 1588
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
         8: .line 1589
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
         9: .line 1591
            getstatic javax.crypto.Cipher.skipDebug:Z
            ifne 11
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            ifnull 11
        10: .line 1592
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        11: .line 1594
      StackMap locals:
      StackMap stack:
            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   12     0    this  Ljavax/crypto/Cipher;
            0   12     1  opmode  I
            0   12     2     key  Ljava/security/Key;
            0   12     3  params  Ljava/security/AlgorithmParameters;
            0   12     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 1662
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* certificate */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/cert/Certificate;Ljava/security/SecureRandom;)V
         1: .line 1663
            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 1732
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.Cipher.initialized:Z
         1: .line 1733
            iload 1 /* opmode */
            invokestatic javax.crypto.Cipher.checkOpmode:(I)V
         2: .line 1736
            aload 2 /* certificate */
            instanceof java.security.cert.X509Certificate
            ifeq 16
         3: .line 1739
            aload 2 /* certificate */
            checkcast java.security.cert.X509Certificate
            astore 4 /* cert */
        start local 4 // java.security.cert.X509Certificate cert
         4: .line 1740
            aload 4 /* cert */
            invokevirtual java.security.cert.X509Certificate.getCriticalExtensionOIDs:()Ljava/util/Set;
            astore 5 /* critSet */
        start local 5 // java.util.Set critSet
         5: .line 1742
            aload 5 /* critSet */
            ifnull 16
            aload 5 /* critSet */
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 16
         6: .line 1743
            aload 5 /* critSet */
            getstatic sun.security.util.KnownOIDs.KeyUsage:Lsun/security/util/KnownOIDs;
            invokevirtual sun.security.util.KnownOIDs.value:()Ljava/lang/String;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 16
         7: .line 1744
            aload 4 /* cert */
            invokevirtual java.security.cert.X509Certificate.getKeyUsage:()[Z
            astore 6 /* keyUsageInfo */
        start local 6 // boolean[] keyUsageInfo
         8: .line 1747
            aload 6 /* keyUsageInfo */
            ifnull 16
         9: .line 1748
            iload 1 /* opmode */
            iconst_1
            if_icmpne 12
        10: .line 1749
            aload 6 /* keyUsageInfo */
            arraylength
            iconst_3
            if_icmple 12
        11: .line 1750
            aload 6 /* keyUsageInfo */
            iconst_3
            baload
            ifeq 15
        12: .line 1751
      StackMap locals: java.security.cert.X509Certificate java.util.Set boolean[]
      StackMap stack:
            iload 1 /* opmode */
            iconst_3
            if_icmpne 16
        13: .line 1752
            aload 6 /* keyUsageInfo */
            arraylength
            iconst_2
            if_icmple 16
        14: .line 1753
            aload 6 /* keyUsageInfo */
            iconst_2
            baload
            ifne 16
        15: .line 1754
      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 1760
      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 1759
      StackMap locals:
      StackMap stack: java.security.PublicKey
            astore 4 /* publicKey */
        start local 4 // java.security.PublicKey publicKey
        19: .line 1762
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            ifnull 23
        20: .line 1763
            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 1764
            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 1765
            goto 27
        23: .line 1767
      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 1768
            goto 27
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
        25: astore 5 /* e */
        start local 5 // java.security.InvalidAlgorithmParameterException e
        26: .line 1770
            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 1774
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.Cipher.initialized:Z
        28: .line 1775
            aload 0 /* this */
            iload 1 /* opmode */
            putfield javax.crypto.Cipher.opmode:I
        29: .line 1777
            getstatic javax.crypto.Cipher.skipDebug:Z
            ifne 31
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            ifnull 31
        30: .line 1778
            getstatic javax.crypto.Cipher.pdebug:Lsun/security/util/Debug;
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.toString:()Ljava/lang/String;
            invokevirtual sun.security.util.Debug.println:(Ljava/lang/String;)V
        31: .line 1780
      StackMap locals:
      StackMap stack:
            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   32     0          this  Ljavax/crypto/Cipher;
            0   32     1        opmode  I
            0   32     2   certificate  Ljava/security/cert/Certificate;
            0   32     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   32     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 1788
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 6
         1: .line 1789
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 1790
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1792
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_1
            if_icmpeq 6
         4: .line 1793
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_2
            if_icmpeq 6
         5: .line 1794
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for encryption/decryption"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 1798
      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 1821
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1824
            aload 1 /* input */
            ifnonnull 3
         2: .line 1825
            new java.lang.IllegalArgumentException
            dup
            ldc "Null input buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 1828
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 1829
            aload 1 /* input */
            arraylength
            ifne 6
         5: .line 1830
            aconst_null
            areturn
         6: .line 1832
      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 1860
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1863
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 1864
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 1865
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1868
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 1869
            iload 3 /* inputLen */
            ifne 7
         6: .line 1870
            aconst_null
            areturn
         7: .line 1872
      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 1914
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1917
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 1918
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 1919
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1922
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 1923
            iload 3 /* inputLen */
            ifne 7
         6: .line 1924
            iconst_0
            ireturn
         7: .line 1926
      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 1927
            aload 4 /* output */
            iconst_0
         9: .line 1926
            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 1972
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 1975
            aload 1 /* input */
            ifnull 4
            iload 2 /* inputOffset */
            iflt 4
         2: .line 1976
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 4
            iload 3 /* inputLen */
            iflt 4
         3: .line 1977
            iload 5 /* outputOffset */
            ifge 5
         4: .line 1978
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 1981
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 1982
            iload 3 /* inputLen */
            ifne 8
         7: .line 1983
            iconst_0
            ireturn
         8: .line 1985
      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 1986
            aload 4 /* output */
            iload 5 /* outputOffset */
        10: .line 1985
            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 2029
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2031
            aload 1 /* input */
            ifnull 2
            aload 2 /* output */
            ifnonnull 3
         2: .line 2032
      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 2034
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 2 /* output */
            if_acmpne 5
         4: .line 2035
            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 2038
      StackMap locals:
      StackMap stack:
            aload 2 /* output */
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifeq 7
         6: .line 2039
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         7: .line 2042
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         8: .line 2043
            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 2085
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2087
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         2: .line 2088
            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 2144
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2147
            aload 1 /* output */
            ifnull 2
            iload 2 /* outputOffset */
            ifge 3
         2: .line 2148
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 2152
            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 2197
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2200
            aload 1 /* input */
            ifnonnull 3
         2: .line 2201
            new java.lang.IllegalArgumentException
            dup
            ldc "Null input buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 2205
            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 2254
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2257
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 2258
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 2259
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 2262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 2263
            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 2328
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2331
            aload 1 /* input */
            ifnull 3
            iload 2 /* inputOffset */
            iflt 3
         2: .line 2332
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 3
            iload 3 /* inputLen */
            ifge 4
         3: .line 2333
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 2336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 2337
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         6: .line 2338
            aload 4 /* output */
            iconst_0
         7: .line 2337
            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 2407
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2410
            aload 1 /* input */
            ifnull 4
            iload 2 /* inputOffset */
            iflt 4
         2: .line 2411
            iload 3 /* inputLen */
            aload 1 /* input */
            arraylength
            iload 2 /* inputOffset */
            isub
            if_icmpgt 4
            iload 3 /* inputLen */
            iflt 4
         3: .line 2412
            iload 5 /* outputOffset */
            ifge 5
         4: .line 2413
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2416
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 2417
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* input */
            iload 2 /* inputOffset */
            iload 3 /* inputLen */
         7: .line 2418
            aload 4 /* output */
            iload 5 /* outputOffset */
         8: .line 2417
            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 2486
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2488
            aload 1 /* input */
            ifnull 2
            aload 2 /* output */
            ifnonnull 3
         2: .line 2489
      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 2491
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 2 /* output */
            if_acmpne 5
         4: .line 2492
            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 2495
      StackMap locals:
      StackMap stack:
            aload 2 /* output */
            invokevirtual java.nio.ByteBuffer.isReadOnly:()Z
            ifeq 7
         6: .line 2496
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         7: .line 2499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         8: .line 2500
            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 2527
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 5
         1: .line 2528
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 2529
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2531
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_3
            if_icmpeq 5
         4: .line 2532
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for wrapping keys"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2537
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         6: .line 2538
            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 2574
            aload 0 /* this */
            instanceof javax.crypto.NullCipher
            ifne 5
         1: .line 2575
            aload 0 /* this */
            getfield javax.crypto.Cipher.initialized:Z
            ifne 3
         2: .line 2576
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2578
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            iconst_4
            if_icmpeq 5
         4: .line 2579
            new java.lang.IllegalStateException
            dup
            ldc "Cipher not initialized for unwrapping keys"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 2583
      StackMap locals:
      StackMap stack:
            iload 3 /* wrappedKeyType */
            iconst_3
            if_icmpeq 9
         6: .line 2584
            iload 3 /* wrappedKeyType */
            iconst_2
            if_icmpeq 9
         7: .line 2585
            iload 3 /* wrappedKeyType */
            iconst_1
            if_icmpeq 9
         8: .line 2586
            new java.security.InvalidParameterException
            dup
            ldc "Invalid key type"
            invokespecial java.security.InvalidParameterException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 2589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
        10: .line 2590
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* wrappedKey */
        11: .line 2591
            aload 2 /* wrappedKeyAlgorithm */
        12: .line 2592
            iload 3 /* wrappedKeyType */
        13: .line 2590
            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 2598
            aload 1 /* params */
            ifnonnull 2
         1: .line 2599
            aconst_null
            areturn
         2: .line 2602
      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 2604
            aload 2 /* alg */
            ldc "RC2"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 2605
            aload 1 /* params */
            ldc Ljavax/crypto/spec/RC2ParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         5: .line 2608
      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 2609
            aload 1 /* params */
            ldc Ljavax/crypto/spec/RC5ParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         7: .line 2612
      StackMap locals:
      StackMap stack:
            aload 2 /* alg */
            ldc "PBE"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 9
         8: .line 2613
            aload 1 /* params */
            ldc Ljavax/crypto/spec/PBEParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
         9: .line 2616
      StackMap locals:
      StackMap stack:
            aload 2 /* alg */
            ldc "DES"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 11
        10: .line 2617
            aload 1 /* params */
            ldc Ljavax/crypto/spec/IvParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            areturn
        11: .line 2619
      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 2625
            aload 0 /* transformation */
            ifnonnull 1
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         1: .line 2626
      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 2627
            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 2649
            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 2650
            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 2673
            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 2674
            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  

  public final void updateAAD(byte[]);
    descriptor: ([B)V
    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[] src
         0: .line 2703
            aload 1 /* src */
            ifnonnull 2
         1: .line 2704
            new java.lang.IllegalArgumentException
            dup
            ldc "src buffer is null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 2707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            arraylength
            invokevirtual javax.crypto.Cipher.updateAAD:([BII)V
         3: .line 2708
            return
        end local 1 // byte[] src
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/crypto/Cipher;
            0    4     1   src  [B
    MethodParameters:
      Name  Flags
      src   

  public final void updateAAD(byte[], int, int);
    descriptor: ([BII)V
    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[] src
        start local 2 // int offset
        start local 3 // int len
         0: .line 2741
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2744
            aload 1 /* src */
            ifnull 3
            iload 2 /* offset */
            iflt 3
            iload 3 /* len */
            iflt 3
         2: .line 2745
            iload 3 /* len */
            aload 1 /* src */
            arraylength
            iload 2 /* offset */
            isub
            if_icmple 4
         3: .line 2746
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Bad arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 2749
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         5: .line 2750
            iload 3 /* len */
            ifne 7
         6: .line 2751
            return
         7: .line 2753
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* src */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual javax.crypto.CipherSpi.engineUpdateAAD:([BII)V
         8: .line 2754
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] src
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljavax/crypto/Cipher;
            0    9     1     src  [B
            0    9     2  offset  I
            0    9     3     len  I
    MethodParameters:
        Name  Flags
      src     
      offset  
      len     

  public final void updateAAD(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    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.nio.ByteBuffer src
         0: .line 2787
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.checkCipherState:()V
         1: .line 2790
            aload 1 /* src */
            ifnonnull 3
         2: .line 2791
            new java.lang.IllegalArgumentException
            dup
            ldc "src ByteBuffer is null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 2794
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.chooseFirstProvider:()V
         4: .line 2795
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifne 6
         5: .line 2796
            return
         6: .line 2798
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.Cipher.spi:Ljavax/crypto/CipherSpi;
            aload 1 /* src */
            invokevirtual javax.crypto.CipherSpi.engineUpdateAAD:(Ljava/nio/ByteBuffer;)V
         7: .line 2799
            return
        end local 1 // java.nio.ByteBuffer src
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljavax/crypto/Cipher;
            0    8     1   src  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      src   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.crypto.Cipher this
         0: .line 2813
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 2814
            aload 1 /* sb */
            ldc "Cipher."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 2815
            aload 0 /* this */
            getfield javax.crypto.Cipher.transformation:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 2816
            ldc ", mode: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 2817
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            tableswitch { // 0 - 4
                    0: 5
                    1: 7
                    2: 9
                    3: 11
                    4: 13
              default: 15
          }
         5: .line 2819
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 1 /* sb */
            ldc "not initialized"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 2820
            goto 16
         7: .line 2822
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "encryption"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 2823
            goto 16
         9: .line 2825
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "decryption"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 2826
            goto 16
        11: .line 2828
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "key wrapping"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 2829
            goto 16
        13: .line 2831
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "key unwrapping"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        14: .line 2832
            goto 16
        15: .line 2835
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "error:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javax.crypto.Cipher.opmode:I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 2837
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc ", algorithm from: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual javax.crypto.Cipher.getProviderName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        17: .line 2838
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // javax.crypto.Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Ljavax/crypto/Cipher;
            1   18     1    sb  Ljava/lang/StringBuilder;
}
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