final class sun.security.pkcs11.P11KeyAgreement extends javax.crypto.KeyAgreementSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.pkcs11.P11KeyAgreement
  super_class: javax.crypto.KeyAgreementSpi
{
  private final sun.security.pkcs11.Token token;
    descriptor: Lsun/security/pkcs11/Token;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final long mechanism;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private sun.security.pkcs11.P11Key privateKey;
    descriptor: Lsun/security/pkcs11/P11Key;
    flags: (0x0002) ACC_PRIVATE

  private java.math.BigInteger publicValue;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE

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

  private javax.crypto.KeyAgreement multiPartyAgreement;
    descriptor: Ljavax/crypto/KeyAgreement;
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.security.pkcs11.Token, java.lang.String, long);
    descriptor: (Lsun/security/pkcs11/Token;Ljava/lang/String;J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
        start local 3 // long mechanism
         0: .line 84
            aload 0 /* this */
            invokespecial javax.crypto.KeyAgreementSpi.<init>:()V
         1: .line 85
            aload 0 /* this */
            aload 1 /* token */
            putfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
         2: .line 86
            aload 0 /* this */
            aload 2 /* algorithm */
            putfield sun.security.pkcs11.P11KeyAgreement.algorithm:Ljava/lang/String;
         3: .line 87
            aload 0 /* this */
            lload 3 /* mechanism */
            putfield sun.security.pkcs11.P11KeyAgreement.mechanism:J
         4: .line 88
            return
        end local 3 // long mechanism
        end local 2 // java.lang.String algorithm
        end local 1 // sun.security.pkcs11.Token token
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lsun/security/pkcs11/P11KeyAgreement;
            0    5     1      token  Lsun/security/pkcs11/Token;
            0    5     2  algorithm  Ljava/lang/String;
            0    5     3  mechanism  J
    MethodParameters:
           Name  Flags
      token      
      algorithm  
      mechanism  

  protected void engineInit(java.security.Key, java.security.SecureRandom);
    descriptor: (Ljava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // java.security.Key key
        start local 2 // java.security.SecureRandom random
         0: .line 93
            aload 1 /* key */
            instanceof java.security.PrivateKey
            ifne 4
         1: .line 94
            new java.security.InvalidKeyException
            dup
         2: .line 95
            ldc "Key must be instance of PrivateKey"
         3: .line 94
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 1 /* key */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.algorithm:Ljava/lang/String;
            invokestatic sun.security.pkcs11.P11KeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
         5: .line 98
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
         6: .line 99
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
         7: .line 100
            return
        end local 2 // java.security.SecureRandom random
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lsun/security/pkcs11/P11KeyAgreement;
            0    8     1     key  Ljava/security/Key;
            0    8     2  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      key     
      random  

  protected void engineInit(java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // java.security.Key key
        start local 2 // java.security.spec.AlgorithmParameterSpec params
        start local 3 // java.security.SecureRandom random
         0: .line 106
            aload 2 /* params */
            ifnull 4
         1: .line 107
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 108
            ldc "Parameters not supported"
         3: .line 107
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* random */
            invokevirtual sun.security.pkcs11.P11KeyAgreement.engineInit:(Ljava/security/Key;Ljava/security/SecureRandom;)V
         5: .line 111
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.spec.AlgorithmParameterSpec params
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11KeyAgreement;
            0    6     1     key  Ljava/security/Key;
            0    6     2  params  Ljava/security/spec/AlgorithmParameterSpec;
            0    6     3  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      key     
      params  
      random  

  protected java.security.Key engineDoPhase(java.security.Key, boolean);
    descriptor: (Ljava/security/Key;Z)Ljava/security/Key;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // java.security.Key key
        start local 2 // boolean lastPhase
         0: .line 116
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            ifnonnull 2
         1: .line 117
            new java.lang.IllegalStateException
            dup
            ldc "Not initialized"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
            ifnull 4
         3: .line 120
            new java.lang.IllegalStateException
            dup
            ldc "Phase already executed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            ifnonnull 5
            iload 2 /* lastPhase */
            ifne 16
         5: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            ifnonnull 15
         6: .line 131
            aload 0 /* this */
         7: .line 132
            ldc "DH"
            invokestatic sun.security.pkcs11.P11Util.getSunJceProvider:()Ljava/security/Provider;
         8: .line 131
            invokestatic javax.crypto.KeyAgreement.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/KeyAgreement;
            putfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
         9: .line 133
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual javax.crypto.KeyAgreement.init:(Ljava/security/Key;)V
        10: .line 134
            goto 15
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
        11: astore 3 /* e */
        start local 3 // java.security.NoSuchAlgorithmException e
        12: .line 135
            new java.security.InvalidKeyException
            dup
        13: .line 136
            ldc "Could not initialize multi party agreement"
            aload 3 /* e */
        14: .line 135
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.security.NoSuchAlgorithmException e
        15: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            aload 1 /* key */
            iload 2 /* lastPhase */
            invokevirtual javax.crypto.KeyAgreement.doPhase:(Ljava/security/Key;Z)Ljava/security/Key;
            areturn
        16: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            instanceof java.security.PublicKey
            ifeq 18
        17: .line 142
            aload 1 /* key */
            invokeinterface java.security.Key.getAlgorithm:()Ljava/lang/String;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.algorithm:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 21
        18: .line 143
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
        19: .line 144
            ldc "Key must be a PublicKey with algorithm DH"
        20: .line 143
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 147
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            instanceof javax.crypto.interfaces.DHPublicKey
            ifeq 29
        22: .line 148
            aload 1 /* key */
            checkcast javax.crypto.interfaces.DHPublicKey
            astore 6 /* dhKey */
        start local 6 // javax.crypto.interfaces.DHPublicKey dhKey
        23: .line 151
            aload 6 /* dhKey */
            invokestatic sun.security.util.KeyUtil.validate:(Ljava/security/Key;)V
        24: .line 153
            aload 6 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getY:()Ljava/math/BigInteger;
            astore 5 /* y */
        start local 5 // java.math.BigInteger y
        25: .line 154
            aload 6 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 7 /* params */
        start local 7 // javax.crypto.spec.DHParameterSpec params
        26: .line 155
            aload 7 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
            astore 3 /* p */
        start local 3 // java.math.BigInteger p
        27: .line 156
            aload 7 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
            astore 4 /* g */
        end local 7 // javax.crypto.spec.DHParameterSpec params
        end local 6 // javax.crypto.interfaces.DHPublicKey dhKey
        start local 4 // java.math.BigInteger g
        28: .line 157
            goto 40
        end local 5 // java.math.BigInteger y
        end local 4 // java.math.BigInteger g
        end local 3 // java.math.BigInteger p
        29: .line 160
      StackMap locals:
      StackMap stack:
            new sun.security.pkcs11.P11DHKeyFactory
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            ldc "DH"
            invokespecial sun.security.pkcs11.P11DHKeyFactory.<init>:(Lsun/security/pkcs11/Token;Ljava/lang/String;)V
            astore 6 /* kf */
        start local 6 // sun.security.pkcs11.P11DHKeyFactory kf
        30: .line 162
            aload 6 /* kf */
        31: .line 163
            aload 1 /* key */
            ldc Ljavax/crypto/spec/DHPublicKeySpec;
        32: .line 162
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.engineGetKeySpec:(Ljava/security/Key;Ljava/lang/Class;)Ljava/security/spec/KeySpec;
            checkcast javax.crypto.spec.DHPublicKeySpec
            astore 7 /* spec */
        start local 7 // javax.crypto.spec.DHPublicKeySpec spec
        33: .line 166
            aload 7 /* spec */
            invokestatic sun.security.util.KeyUtil.validate:(Ljava/security/spec/KeySpec;)V
        34: .line 168
            aload 7 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getY:()Ljava/math/BigInteger;
            astore 5 /* y */
        start local 5 // java.math.BigInteger y
        35: .line 169
            aload 7 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getP:()Ljava/math/BigInteger;
            astore 3 /* p */
        start local 3 // java.math.BigInteger p
        36: .line 170
            aload 7 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getG:()Ljava/math/BigInteger;
            astore 4 /* g */
        end local 7 // javax.crypto.spec.DHPublicKeySpec spec
        start local 4 // java.math.BigInteger g
        37: .line 171
            goto 40
        end local 5 // java.math.BigInteger y
        end local 4 // java.math.BigInteger g
        end local 3 // java.math.BigInteger p
      StackMap locals: sun.security.pkcs11.P11KeyAgreement java.security.Key int top top top sun.security.pkcs11.P11DHKeyFactory
      StackMap stack: java.security.spec.InvalidKeySpecException
        38: astore 7 /* e */
        start local 7 // java.security.spec.InvalidKeySpecException e
        39: .line 172
            new java.security.InvalidKeyException
            dup
            ldc "Could not obtain key values"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.spec.InvalidKeySpecException e
        end local 6 // sun.security.pkcs11.P11DHKeyFactory kf
        start local 3 // java.math.BigInteger p
        start local 4 // java.math.BigInteger g
        start local 5 // java.math.BigInteger y
        40: .line 178
      StackMap locals: sun.security.pkcs11.P11KeyAgreement java.security.Key int java.math.BigInteger java.math.BigInteger java.math.BigInteger
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            instanceof javax.crypto.interfaces.DHPrivateKey
            ifeq 48
        41: .line 179
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            checkcast javax.crypto.interfaces.DHPrivateKey
            astore 6 /* dhKey */
        start local 6 // javax.crypto.interfaces.DHPrivateKey dhKey
        42: .line 180
            aload 6 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPrivateKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 7 /* params */
        start local 7 // javax.crypto.spec.DHParameterSpec params
        43: .line 181
            aload 3 /* p */
            aload 7 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifeq 45
        44: .line 182
            aload 4 /* g */
            aload 7 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifne 48
        45: .line 183
      StackMap locals: javax.crypto.interfaces.DHPrivateKey javax.crypto.spec.DHParameterSpec
      StackMap stack:
            new java.security.InvalidKeyException
            dup
        46: .line 184
            ldc "PublicKey DH parameters must match PrivateKey DH parameters"
        47: .line 183
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // javax.crypto.spec.DHParameterSpec params
        end local 6 // javax.crypto.interfaces.DHPrivateKey dhKey
        48: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* y */
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        49: .line 189
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual java.math.BigInteger.bitLength:()I
            bipush 7
            iadd
            iconst_3
            ishr
            putfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
        50: .line 190
            aconst_null
            areturn
        end local 5 // java.math.BigInteger y
        end local 4 // java.math.BigInteger g
        end local 3 // java.math.BigInteger p
        end local 2 // boolean lastPhase
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   51     0       this  Lsun/security/pkcs11/P11KeyAgreement;
            0   51     1        key  Ljava/security/Key;
            0   51     2  lastPhase  Z
           12   15     3          e  Ljava/security/NoSuchAlgorithmException;
           27   29     3          p  Ljava/math/BigInteger;
           36   38     3          p  Ljava/math/BigInteger;
           40   51     3          p  Ljava/math/BigInteger;
           28   29     4          g  Ljava/math/BigInteger;
           37   38     4          g  Ljava/math/BigInteger;
           40   51     4          g  Ljava/math/BigInteger;
           25   29     5          y  Ljava/math/BigInteger;
           35   38     5          y  Ljava/math/BigInteger;
           40   51     5          y  Ljava/math/BigInteger;
           23   28     6      dhKey  Ljavax/crypto/interfaces/DHPublicKey;
           26   28     7     params  Ljavax/crypto/spec/DHParameterSpec;
           30   40     6         kf  Lsun/security/pkcs11/P11DHKeyFactory;
           33   37     7       spec  Ljavax/crypto/spec/DHPublicKeySpec;
           39   40     7          e  Ljava/security/spec/InvalidKeySpecException;
           42   48     6      dhKey  Ljavax/crypto/interfaces/DHPrivateKey;
           43   48     7     params  Ljavax/crypto/spec/DHParameterSpec;
      Exception table:
        from    to  target  type
           6    10      11  Class java.security.NoSuchAlgorithmException
          30    37      38  Class java.security.spec.InvalidKeySpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.lang.IllegalStateException
    MethodParameters:
           Name  Flags
      key        
      lastPhase  

  protected byte[] engineGenerateSecret();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=11, args_size=1
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
         0: .line 195
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            ifnull 4
         1: .line 196
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            invokevirtual javax.crypto.KeyAgreement.generateSecret:()[B
            astore 1 /* val */
        start local 1 // byte[] val
         2: .line 197
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
         3: .line 198
            aload 1 /* val */
            areturn
        end local 1 // byte[] val
         4: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            ifnull 5
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
            ifnonnull 6
         5: .line 201
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Not initialized correctly"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 203
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* session */
        start local 1 // sun.security.pkcs11.Session session
         7: .line 204
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 2 /* privKeyID */
        start local 2 // long privKeyID
         8: .line 206
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            astore 1 /* session */
         9: .line 207
            iconst_2
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
        10: .line 208
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            lconst_0
            ldc 4
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_1
        11: .line 209
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 256
            ldc 16
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
        12: .line 207
            astore 4 /* attributes */
        start local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        13: .line 211
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
        14: .line 212
            ldc "generate"
            ldc 4
            ldc 16
            aload 4 /* attributes */
        15: .line 211
            invokevirtual sun.security.pkcs11.Token.getAttributes:(Ljava/lang/String;JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            astore 4 /* attributes */
        16: .line 213
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
        17: .line 214
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.mechanism:J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(JLjava/math/BigInteger;)V
            lload 2 /* privKeyID */
        18: .line 215
            aload 4 /* attributes */
        19: .line 213
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DeriveKey:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 5 /* keyID */
        start local 5 // long keyID
        20: .line 217
            iconst_1
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
        21: .line 218
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
        22: .line 217
            astore 4 /* attributes */
        23: .line 220
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 5 /* keyID */
            aload 4 /* attributes */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_GetAttributeValue:(JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V
        24: .line 221
            aload 4 /* attributes */
            iconst_0
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getByteArray:()[B
            astore 7 /* secret */
        start local 7 // byte[] secret
        25: .line 222
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 5 /* keyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DestroyObject:(JJ)V
        26: .line 227
            aload 7 /* secret */
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            if_icmpne 32
        27: .line 228
            aload 7 /* secret */
            astore 10
        28: .line 242
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        29: .line 243
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        30: .line 244
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        31: .line 228
            aload 10
            areturn
        32: .line 230
      StackMap locals: sun.security.pkcs11.P11KeyAgreement sun.security.pkcs11.Session long sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] long byte[]
      StackMap stack:
            aload 7 /* secret */
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            if_icmple 34
        33: .line 232
            new java.security.ProviderException
            dup
            ldc "generated secret is out-of-range"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        34: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            newarray 8
            astore 8 /* newSecret */
        start local 8 // byte[] newSecret
        35: .line 235
            aload 7 /* secret */
            iconst_0
            aload 8 /* newSecret */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            aload 7 /* secret */
            arraylength
            isub
        36: .line 236
            aload 7 /* secret */
            arraylength
        37: .line 235
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        38: .line 237
            aload 8 /* newSecret */
            astore 10
        39: .line 242
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        40: .line 243
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        41: .line 244
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        42: .line 237
            aload 10
            areturn
        end local 8 // byte[] newSecret
        end local 7 // byte[] secret
        end local 5 // long keyID
        end local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        43: .line 239
      StackMap locals: sun.security.pkcs11.P11KeyAgreement sun.security.pkcs11.Session long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        44: .line 240
            new java.security.ProviderException
            dup
            ldc "Could not derive key"
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        45: .line 241
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9
        46: .line 242
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        47: .line 243
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        48: .line 244
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        49: .line 245
            aload 9
            athrow
        end local 2 // long privKeyID
        end local 1 // sun.security.pkcs11.Session session
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   50     0        this  Lsun/security/pkcs11/P11KeyAgreement;
            2    4     1         val  [B
            7   50     1     session  Lsun/security/pkcs11/Session;
            8   50     2   privKeyID  J
           13   43     4  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           20   43     5       keyID  J
           25   43     7      secret  [B
           35   43     8   newSecret  [B
           44   45     4           e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           8    28      43  Class sun.security.pkcs11.wrapper.PKCS11Exception
          32    39      43  Class sun.security.pkcs11.wrapper.PKCS11Exception
           8    28      45  any
          32    39      45  any
          43    45      45  any
    Exceptions:
      throws java.lang.IllegalStateException

  protected int engineGenerateSecret(byte[], int);
    descriptor: ([BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // byte[] sharedSecret
        start local 2 // int offset
         0: .line 251
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            ifnull 4
         1: .line 252
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            aload 1 /* sharedSecret */
            iload 2 /* offset */
            invokevirtual javax.crypto.KeyAgreement.generateSecret:([BI)I
            istore 3 /* n */
        start local 3 // int n
         2: .line 253
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
         3: .line 254
            iload 3 /* n */
            ireturn
        end local 3 // int n
         4: .line 256
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            iadd
            aload 1 /* sharedSecret */
            arraylength
            if_icmple 8
         5: .line 257
            new javax.crypto.ShortBufferException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Need "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.secretLen:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         6: .line 258
            ldc " bytes, only "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* sharedSecret */
            arraylength
            iload 2 /* offset */
            isub
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " available"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 257
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11KeyAgreement.engineGenerateSecret:()[B
            astore 3 /* secret */
        start local 3 // byte[] secret
         9: .line 261
            aload 3 /* secret */
            iconst_0
            aload 1 /* sharedSecret */
            iload 2 /* offset */
            aload 3 /* secret */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 262
            aload 3 /* secret */
            arraylength
            ireturn
        end local 3 // byte[] secret
        end local 2 // int offset
        end local 1 // byte[] sharedSecret
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lsun/security/pkcs11/P11KeyAgreement;
            0   11     1  sharedSecret  [B
            0   11     2        offset  I
            2    4     3             n  I
            9   11     3        secret  [B
    Exceptions:
      throws java.lang.IllegalStateException, javax.crypto.ShortBufferException
    MethodParameters:
              Name  Flags
      sharedSecret  
      offset        

  protected javax.crypto.SecretKey engineGenerateSecret(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/crypto/SecretKey;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // java.lang.String algorithm
         0: .line 269
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            ifnull 4
         1: .line 270
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
            aload 1 /* algorithm */
            invokevirtual javax.crypto.KeyAgreement.generateSecret:(Ljava/lang/String;)Ljavax/crypto/SecretKey;
            astore 2 /* key */
        start local 2 // javax.crypto.SecretKey key
         2: .line 271
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.multiPartyAgreement:Ljavax/crypto/KeyAgreement;
         3: .line 272
            aload 2 /* key */
            areturn
        end local 2 // javax.crypto.SecretKey key
         4: .line 274
      StackMap locals:
      StackMap stack:
            aload 1 /* algorithm */
            ifnonnull 6
         5: .line 275
            new java.security.NoSuchAlgorithmException
            dup
            ldc "Algorithm must not be null"
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 278
      StackMap locals:
      StackMap stack:
            aload 1 /* algorithm */
            ldc "TlsPremasterSecret"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 284
            aload 0 /* this */
            aload 1 /* algorithm */
            invokevirtual sun.security.pkcs11.P11KeyAgreement.nativeGenerateSecret:(Ljava/lang/String;)Ljavax/crypto/SecretKey;
            areturn
         8: .line 287
      StackMap locals:
      StackMap stack:
            aload 1 /* algorithm */
            ldc "TlsPremasterSecret"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 13
         9: .line 288
            getstatic sun.security.pkcs11.P11KeyAgreement$AllowKDF.VALUE:Z
            ifne 13
        10: .line 290
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported secret key algorithm: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        11: .line 291
            aload 1 /* algorithm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 290
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11KeyAgreement.engineGenerateSecret:()[B
            astore 2 /* secret */
        start local 2 // byte[] secret
        14: .line 299
            aload 1 /* algorithm */
            ldc "DES"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 17
        15: .line 300
            bipush 8
            istore 3 /* keyLen */
        start local 3 // int keyLen
        16: .line 301
            goto 29
        end local 3 // int keyLen
      StackMap locals: byte[]
      StackMap stack:
        17: aload 1 /* algorithm */
            ldc "DESede"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 20
        18: .line 302
            bipush 24
            istore 3 /* keyLen */
        start local 3 // int keyLen
        19: .line 303
            goto 29
        end local 3 // int keyLen
      StackMap locals:
      StackMap stack:
        20: aload 1 /* algorithm */
            ldc "Blowfish"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 23
        21: .line 304
            bipush 56
            aload 2 /* secret */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* keyLen */
        start local 3 // int keyLen
        22: .line 305
            goto 29
        end local 3 // int keyLen
      StackMap locals:
      StackMap stack:
        23: aload 1 /* algorithm */
            ldc "TlsPremasterSecret"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 26
        24: .line 306
            aload 2 /* secret */
            arraylength
            istore 3 /* keyLen */
        start local 3 // int keyLen
        25: .line 307
            goto 29
        end local 3 // int keyLen
        26: .line 308
      StackMap locals:
      StackMap stack:
            new java.security.NoSuchAlgorithmException
            dup
        27: .line 309
            new java.lang.StringBuilder
            dup
            ldc "Unknown algorithm "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* algorithm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        28: .line 308
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // int keyLen
        29: .line 311
      StackMap locals: int
      StackMap stack:
            aload 2 /* secret */
            arraylength
            iload 3 /* keyLen */
            if_icmpge 31
        30: .line 312
            new java.security.InvalidKeyException
            dup
            ldc "Secret too short"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        31: .line 314
      StackMap locals:
      StackMap stack:
            aload 1 /* algorithm */
            ldc "DES"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 33
        32: .line 315
            aload 1 /* algorithm */
            ldc "DESede"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 38
        33: .line 316
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        34: goto 37
        35: .line 317
      StackMap locals: int
      StackMap stack:
            aload 2 /* secret */
            iload 4 /* i */
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.fixDESParity:([BI)V
        36: .line 316
            iinc 4 /* i */ 8
      StackMap locals:
      StackMap stack:
        37: iload 4 /* i */
            iload 3 /* keyLen */
            if_icmplt 35
        end local 4 // int i
        38: .line 320
      StackMap locals:
      StackMap stack:
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 2 /* secret */
            iconst_0
            iload 3 /* keyLen */
            aload 1 /* algorithm */
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BIILjava/lang/String;)V
            areturn
        end local 3 // int keyLen
        end local 2 // byte[] secret
        end local 1 // java.lang.String algorithm
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   39     0       this  Lsun/security/pkcs11/P11KeyAgreement;
            0   39     1  algorithm  Ljava/lang/String;
            2    4     2        key  Ljavax/crypto/SecretKey;
           14   39     2     secret  [B
           16   17     3     keyLen  I
           19   20     3     keyLen  I
           22   23     3     keyLen  I
           25   26     3     keyLen  I
           29   39     3     keyLen  I
           34   38     4          i  I
    Exceptions:
      throws java.lang.IllegalStateException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException
    MethodParameters:
           Name  Flags
      algorithm  

  private javax.crypto.SecretKey nativeGenerateSecret(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljavax/crypto/SecretKey;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=17, args_size=2
        start local 0 // sun.security.pkcs11.P11KeyAgreement this
        start local 1 // java.lang.String algorithm
         0: .line 326
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            ifnull 1
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
            ifnonnull 2
         1: .line 327
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Not initialized correctly"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 329
      StackMap locals:
      StackMap stack:
            ldc 16
            lstore 2 /* keyType */
        start local 2 // long keyType
         3: .line 330
            aconst_null
            astore 4 /* session */
        start local 4 // sun.security.pkcs11.Session session
         4: .line 331
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 5 /* privKeyID */
        start local 5 // long privKeyID
         5: .line 333
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            astore 4 /* session */
         6: .line 334
            iconst_2
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         7: .line 335
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            lconst_0
            ldc 4
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_1
         8: .line 336
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 256
            lload 2 /* keyType */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
         9: .line 334
            astore 7 /* attributes */
        start local 7 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        10: .line 338
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
        11: .line 339
            ldc "generate"
            ldc 4
            lload 2 /* keyType */
            aload 7 /* attributes */
        12: .line 338
            invokevirtual sun.security.pkcs11.Token.getAttributes:(Ljava/lang/String;JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            astore 7 /* attributes */
        13: .line 340
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 4 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
        14: .line 341
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.mechanism:J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(JLjava/math/BigInteger;)V
            lload 5 /* privKeyID */
        15: .line 342
            aload 7 /* attributes */
        16: .line 340
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DeriveKey:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 8 /* keyID */
        start local 8 // long keyID
        17: .line 343
            iconst_1
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
        18: .line 344
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 353
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
        19: .line 343
            astore 10 /* lenAttributes */
        start local 10 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] lenAttributes
        20: .line 346
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 4 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 8 /* keyID */
            aload 10 /* lenAttributes */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_GetAttributeValue:(JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V
        21: .line 347
            aload 10 /* lenAttributes */
            iconst_0
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getLong:()J
            l2i
            istore 11 /* keyLen */
        start local 11 // int keyLen
        22: .line 349
            aload 4 /* session */
            lload 8 /* keyID */
            aload 1 /* algorithm */
            iload 11 /* keyLen */
            iconst_3
            ishl
            aload 7 /* attributes */
        23: .line 348
            invokestatic sun.security.pkcs11.P11Key.secretKey:(Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)Ljavax/crypto/SecretKey;
            astore 12 /* key */
        start local 12 // javax.crypto.SecretKey key
        24: .line 350
            ldc "RAW"
            aload 12 /* key */
            invokeinterface javax.crypto.SecretKey.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 29
        25: .line 356
            aload 12 /* key */
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            astore 13 /* keyBytes */
        start local 13 // byte[] keyBytes
        26: .line 357
            aload 13 /* keyBytes */
            invokestatic sun.security.util.KeyUtil.trimZeroes:([B)[B
            astore 14 /* newBytes */
        start local 14 // byte[] newBytes
        27: .line 358
            aload 13 /* keyBytes */
            aload 14 /* newBytes */
            if_acmpeq 29
        28: .line 359
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 14 /* newBytes */
            aload 1 /* algorithm */
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BLjava/lang/String;)V
            astore 12 /* key */
        end local 14 // byte[] newBytes
        end local 13 // byte[] keyBytes
        29: .line 362
      StackMap locals: sun.security.pkcs11.P11KeyAgreement java.lang.String long sun.security.pkcs11.Session long sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] long sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] int javax.crypto.SecretKey
      StackMap stack:
            aload 12 /* key */
            astore 16
        30: .line 366
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        31: .line 367
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        32: .line 368
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 4 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        33: .line 362
            aload 16
            areturn
        end local 12 // javax.crypto.SecretKey key
        end local 11 // int keyLen
        end local 10 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] lenAttributes
        end local 8 // long keyID
        end local 7 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        34: .line 363
      StackMap locals: sun.security.pkcs11.P11KeyAgreement java.lang.String long sun.security.pkcs11.Session long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 7 /* e */
        start local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        35: .line 364
            new java.security.InvalidKeyException
            dup
            ldc "Could not derive key"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        36: .line 365
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 15
        37: .line 366
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.privateKey:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        38: .line 367
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11KeyAgreement.publicValue:Ljava/math/BigInteger;
        39: .line 368
            aload 0 /* this */
            getfield sun.security.pkcs11.P11KeyAgreement.token:Lsun/security/pkcs11/Token;
            aload 4 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        40: .line 369
            aload 15
            athrow
        end local 5 // long privKeyID
        end local 4 // sun.security.pkcs11.Session session
        end local 2 // long keyType
        end local 1 // java.lang.String algorithm
        end local 0 // sun.security.pkcs11.P11KeyAgreement this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   41     0           this  Lsun/security/pkcs11/P11KeyAgreement;
            0   41     1      algorithm  Ljava/lang/String;
            3   41     2        keyType  J
            4   41     4        session  Lsun/security/pkcs11/Session;
            5   41     5      privKeyID  J
           10   34     7     attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           17   34     8          keyID  J
           20   34    10  lenAttributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           22   34    11         keyLen  I
           24   34    12            key  Ljavax/crypto/SecretKey;
           26   29    13       keyBytes  [B
           27   29    14       newBytes  [B
           35   36     7              e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           5    30      34  Class sun.security.pkcs11.wrapper.PKCS11Exception
           5    30      36  any
          34    36      36  any
    Exceptions:
      throws java.lang.IllegalStateException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException
    MethodParameters:
           Name  Flags
      algorithm  
}
SourceFile: "P11KeyAgreement.java"
NestMembers:
  sun.security.pkcs11.P11KeyAgreement$AllowKDF
InnerClasses:
  private AllowKDF = sun.security.pkcs11.P11KeyAgreement$AllowKDF of sun.security.pkcs11.P11KeyAgreement