public class javax.crypto.ExemptionMechanism
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.crypto.ExemptionMechanism
  super_class: java.lang.Object
{
  private java.security.Provider provider;
    descriptor: Ljava/security/Provider;
    flags: (0x0002) ACC_PRIVATE

  private javax.crypto.ExemptionMechanismSpi exmechSpi;
    descriptor: Ljavax/crypto/ExemptionMechanismSpi;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private java.security.Key keyStored;
    descriptor: Ljava/security/Key;
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(javax.crypto.ExemptionMechanismSpi, java.security.Provider, java.lang.String);
    descriptor: (Ljavax/crypto/ExemptionMechanismSpi;Ljava/security/Provider;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // javax.crypto.ExemptionMechanismSpi exmechSpi
        start local 2 // java.security.Provider provider
        start local 3 // java.lang.String mechanism
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.done:Z
         2: .line 67
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         3: .line 70
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
         4: .line 82
            aload 0 /* this */
            aload 1 /* exmechSpi */
            putfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
         5: .line 83
            aload 0 /* this */
            aload 2 /* provider */
            putfield javax.crypto.ExemptionMechanism.provider:Ljava/security/Provider;
         6: .line 84
            aload 0 /* this */
            aload 3 /* mechanism */
            putfield javax.crypto.ExemptionMechanism.mechanism:Ljava/lang/String;
         7: .line 85
            return
        end local 3 // java.lang.String mechanism
        end local 2 // java.security.Provider provider
        end local 1 // javax.crypto.ExemptionMechanismSpi exmechSpi
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Ljavax/crypto/ExemptionMechanism;
            0    8     1  exmechSpi  Ljavax/crypto/ExemptionMechanismSpi;
            0    8     2   provider  Ljava/security/Provider;
            0    8     3  mechanism  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      exmechSpi  
      provider   
      mechanism  

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

  public static final javax.crypto.ExemptionMechanism getInstance(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/crypto/ExemptionMechanism;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.lang.String algorithm
         0: .line 136
            ldc "ExemptionMechanism"
         1: .line 137
            ldc Ljavax/crypto/ExemptionMechanismSpi;
            aload 0 /* algorithm */
         2: .line 136
            invokestatic javax.crypto.JceSecurity.getInstance:(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;
            astore 1 /* instance */
        start local 1 // sun.security.jca.GetInstance$Instance instance
         3: .line 138
            new javax.crypto.ExemptionMechanism
            dup
            aload 1 /* instance */
            getfield sun.security.jca.GetInstance$Instance.impl:Ljava/lang/Object;
            checkcast javax.crypto.ExemptionMechanismSpi
         4: .line 139
            aload 1 /* instance */
            getfield sun.security.jca.GetInstance$Instance.provider:Ljava/security/Provider;
            aload 0 /* algorithm */
         5: .line 138
            invokespecial javax.crypto.ExemptionMechanism.<init>:(Ljavax/crypto/ExemptionMechanismSpi;Ljava/security/Provider;Ljava/lang/String;)V
            areturn
        end local 1 // sun.security.jca.GetInstance$Instance instance
        end local 0 // java.lang.String algorithm
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0  algorithm  Ljava/lang/String;
            3    6     1   instance  Lsun/security/jca/GetInstance$Instance;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
           Name  Flags
      algorithm  

  public static final javax.crypto.ExemptionMechanism getInstance(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/ExemptionMechanism;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.lang.String algorithm
        start local 1 // java.lang.String provider
         0: .line 184
            ldc "ExemptionMechanism"
         1: .line 185
            ldc Ljavax/crypto/ExemptionMechanismSpi;
            aload 0 /* algorithm */
            aload 1 /* provider */
         2: .line 184
            invokestatic javax.crypto.JceSecurity.getInstance:(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;
            astore 2 /* instance */
        start local 2 // sun.security.jca.GetInstance$Instance instance
         3: .line 186
            new javax.crypto.ExemptionMechanism
            dup
            aload 2 /* instance */
            getfield sun.security.jca.GetInstance$Instance.impl:Ljava/lang/Object;
            checkcast javax.crypto.ExemptionMechanismSpi
         4: .line 187
            aload 2 /* instance */
            getfield sun.security.jca.GetInstance$Instance.provider:Ljava/security/Provider;
            aload 0 /* algorithm */
         5: .line 186
            invokespecial javax.crypto.ExemptionMechanism.<init>:(Ljavax/crypto/ExemptionMechanismSpi;Ljava/security/Provider;Ljava/lang/String;)V
            areturn
        end local 2 // sun.security.jca.GetInstance$Instance instance
        end local 1 // java.lang.String provider
        end local 0 // java.lang.String algorithm
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0  algorithm  Ljava/lang/String;
            0    6     1   provider  Ljava/lang/String;
            3    6     2   instance  Lsun/security/jca/GetInstance$Instance;
    Exceptions:
      throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException
    MethodParameters:
           Name  Flags
      algorithm  
      provider   

  public static final javax.crypto.ExemptionMechanism getInstance(java.lang.String, java.security.Provider);
    descriptor: (Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/ExemptionMechanism;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.lang.String algorithm
        start local 1 // java.security.Provider provider
         0: .line 224
            ldc "ExemptionMechanism"
         1: .line 225
            ldc Ljavax/crypto/ExemptionMechanismSpi;
            aload 0 /* algorithm */
            aload 1 /* provider */
         2: .line 224
            invokestatic javax.crypto.JceSecurity.getInstance:(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/security/Provider;)Lsun/security/jca/GetInstance$Instance;
            astore 2 /* instance */
        start local 2 // sun.security.jca.GetInstance$Instance instance
         3: .line 226
            new javax.crypto.ExemptionMechanism
            dup
            aload 2 /* instance */
            getfield sun.security.jca.GetInstance$Instance.impl:Ljava/lang/Object;
            checkcast javax.crypto.ExemptionMechanismSpi
         4: .line 227
            aload 2 /* instance */
            getfield sun.security.jca.GetInstance$Instance.provider:Ljava/security/Provider;
            aload 0 /* algorithm */
         5: .line 226
            invokespecial javax.crypto.ExemptionMechanism.<init>:(Ljavax/crypto/ExemptionMechanismSpi;Ljava/security/Provider;Ljava/lang/String;)V
            areturn
        end local 2 // sun.security.jca.GetInstance$Instance instance
        end local 1 // java.security.Provider provider
        end local 0 // java.lang.String algorithm
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0  algorithm  Ljava/lang/String;
            0    6     1   provider  Ljava/security/Provider;
            3    6     2   instance  Lsun/security/jca/GetInstance$Instance;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
           Name  Flags
      algorithm  
      provider   

  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.ExemptionMechanism this
         0: .line 236
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.provider:Ljava/security/Provider;
            areturn
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/ExemptionMechanism;

  public final boolean isCryptoAllowed(java.security.Key);
    descriptor: (Ljava/security/Key;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // java.security.Key key
         0: .line 259
            iconst_0
            istore 2 /* ret */
        start local 2 // boolean ret
         1: .line 260
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.done:Z
            ifeq 3
            aload 1 /* key */
            ifnull 3
         2: .line 263
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            istore 2 /* ret */
         3: .line 265
      StackMap locals: int
      StackMap stack:
            iload 2 /* ret */
            ireturn
        end local 2 // boolean ret
        end local 1 // java.security.Key key
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/crypto/ExemptionMechanism;
            0    4     1   key  Ljava/security/Key;
            1    4     2   ret  Z
    Exceptions:
      throws javax.crypto.ExemptionMechanismException
    MethodParameters:
      Name  Flags
      key   

  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.ExemptionMechanism this
        start local 1 // int inputLen
         0: .line 286
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.initialized:Z
            ifne 4
         1: .line 287
            new java.lang.IllegalStateException
            dup
         2: .line 288
            ldc "ExemptionMechanism not initialized"
         3: .line 287
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 290
      StackMap locals:
      StackMap stack:
            iload 1 /* inputLen */
            ifge 8
         5: .line 291
            new java.lang.IllegalArgumentException
            dup
         6: .line 292
            ldc "Input size must be equal to or greater than zero"
         7: .line 291
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            iload 1 /* inputLen */
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineGetOutputSize:(I)I
            ireturn
        end local 1 // int inputLen
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljavax/crypto/ExemptionMechanism;
            0    9     1  inputLen  I
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
          Name  Flags
      inputLen  

  public final void init(java.security.Key);
    descriptor: (Ljava/security/Key;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // java.security.Key key
         0: .line 316
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.done:Z
         1: .line 317
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         2: .line 319
            aload 0 /* this */
            aload 1 /* key */
            putfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
         3: .line 320
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            aload 1 /* key */
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineInit:(Ljava/security/Key;)V
         4: .line 321
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         5: .line 322
            return
        end local 1 // java.security.Key key
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/crypto/ExemptionMechanism;
            0    6     1   key  Ljava/security/Key;
    Exceptions:
      throws java.security.InvalidKeyException, javax.crypto.ExemptionMechanismException
    MethodParameters:
      Name  Flags
      key   

  public final void init(java.security.Key, java.security.spec.AlgorithmParameterSpec);
    descriptor: (Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // java.security.Key key
        start local 2 // java.security.spec.AlgorithmParameterSpec params
         0: .line 348
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.done:Z
         1: .line 349
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         2: .line 351
            aload 0 /* this */
            aload 1 /* key */
            putfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
         3: .line 352
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            aload 1 /* key */
            aload 2 /* params */
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineInit:(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V
         4: .line 353
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         5: .line 354
            return
        end local 2 // java.security.spec.AlgorithmParameterSpec params
        end local 1 // java.security.Key key
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljavax/crypto/ExemptionMechanism;
            0    6     1     key  Ljava/security/Key;
            0    6     2  params  Ljava/security/spec/AlgorithmParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException, javax.crypto.ExemptionMechanismException
    MethodParameters:
        Name  Flags
      key     
      params  

  public final void init(java.security.Key, java.security.AlgorithmParameters);
    descriptor: (Ljava/security/Key;Ljava/security/AlgorithmParameters;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // java.security.Key key
        start local 2 // java.security.AlgorithmParameters params
         0: .line 380
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.done:Z
         1: .line 381
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         2: .line 383
            aload 0 /* this */
            aload 1 /* key */
            putfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
         3: .line 384
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            aload 1 /* key */
            aload 2 /* params */
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineInit:(Ljava/security/Key;Ljava/security/AlgorithmParameters;)V
         4: .line 385
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.initialized:Z
         5: .line 386
            return
        end local 2 // java.security.AlgorithmParameters params
        end local 1 // java.security.Key key
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljavax/crypto/ExemptionMechanism;
            0    6     1     key  Ljava/security/Key;
            0    6     2  params  Ljava/security/AlgorithmParameters;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException, javax.crypto.ExemptionMechanismException
    MethodParameters:
        Name  Flags
      key     
      params  

  public final byte[] genExemptionBlob();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javax.crypto.ExemptionMechanism this
         0: .line 400
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.initialized:Z
            ifne 4
         1: .line 401
            new java.lang.IllegalStateException
            dup
         2: .line 402
            ldc "ExemptionMechanism not initialized"
         3: .line 401
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineGenExemptionBlob:()[B
            astore 1 /* blob */
        start local 1 // byte[] blob
         5: .line 405
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.done:Z
         6: .line 406
            aload 1 /* blob */
            areturn
        end local 1 // byte[] blob
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/crypto/ExemptionMechanism;
            5    7     1  blob  [B
    Exceptions:
      throws java.lang.IllegalStateException, javax.crypto.ExemptionMechanismException

  public final int genExemptionBlob(byte[]);
    descriptor: ([B)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // byte[] output
         0: .line 433
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.initialized:Z
            ifne 4
         1: .line 434
            new java.lang.IllegalStateException
            dup
         2: .line 435
            ldc "ExemptionMechanism not initialized"
         3: .line 434
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            aload 1 /* output */
            iconst_0
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineGenExemptionBlob:([BI)I
            istore 2 /* n */
        start local 2 // int n
         5: .line 438
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.done:Z
         6: .line 439
            iload 2 /* n */
            ireturn
        end local 2 // int n
        end local 1 // byte[] output
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljavax/crypto/ExemptionMechanism;
            0    7     1  output  [B
            5    7     2       n  I
    Exceptions:
      throws java.lang.IllegalStateException, javax.crypto.ShortBufferException, javax.crypto.ExemptionMechanismException
    MethodParameters:
        Name  Flags
      output  

  public final int genExemptionBlob(byte[], int);
    descriptor: ([BI)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // javax.crypto.ExemptionMechanism this
        start local 1 // byte[] output
        start local 2 // int outputOffset
         0: .line 469
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.initialized:Z
            ifne 4
         1: .line 470
            new java.lang.IllegalStateException
            dup
         2: .line 471
            ldc "ExemptionMechanism not initialized"
         3: .line 470
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.ExemptionMechanism.exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;
            aload 1 /* output */
            iload 2 /* outputOffset */
            invokevirtual javax.crypto.ExemptionMechanismSpi.engineGenExemptionBlob:([BI)I
            istore 3 /* n */
        start local 3 // int n
         5: .line 474
            aload 0 /* this */
            iconst_1
            putfield javax.crypto.ExemptionMechanism.done:Z
         6: .line 475
            iload 3 /* n */
            ireturn
        end local 3 // int n
        end local 2 // int outputOffset
        end local 1 // byte[] output
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Ljavax/crypto/ExemptionMechanism;
            0    7     1        output  [B
            0    7     2  outputOffset  I
            5    7     3             n  I
    Exceptions:
      throws java.lang.IllegalStateException, javax.crypto.ShortBufferException, javax.crypto.ExemptionMechanismException
    MethodParameters:
              Name  Flags
      output        
      outputOffset  

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.crypto.ExemptionMechanism this
         0: .line 483
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.ExemptionMechanism.keyStored:Ljava/security/Key;
         1: .line 485
            return
        end local 0 // javax.crypto.ExemptionMechanism this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/crypto/ExemptionMechanism;
}
SourceFile: "ExemptionMechanism.java"
InnerClasses:
  public final Instance = sun.security.jca.GetInstance$Instance of sun.security.jca.GetInstance