final class sun.security.pkcs11.P11DHKeyFactory extends sun.security.pkcs11.P11KeyFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.pkcs11.P11DHKeyFactory
  super_class: sun.security.pkcs11.P11KeyFactory
{
  void <init>(sun.security.pkcs11.Token, java.lang.String);
    descriptor: (Lsun/security/pkcs11/Token;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
         0: .line 49
            aload 0 /* this */
            aload 1 /* token */
            aload 2 /* algorithm */
            invokespecial sun.security.pkcs11.P11KeyFactory.<init>:(Lsun/security/pkcs11/Token;Ljava/lang/String;)V
         1: .line 50
            return
        end local 2 // java.lang.String algorithm
        end local 1 // sun.security.pkcs11.Token token
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/security/pkcs11/P11DHKeyFactory;
            0    2     1      token  Lsun/security/pkcs11/Token;
            0    2     2  algorithm  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      token      
      algorithm  

  java.security.PublicKey implTranslatePublicKey(java.security.PublicKey);
    descriptor: (Ljava/security/PublicKey;)Ljava/security/PublicKey;
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.security.PublicKey key
         0: .line 54
            aload 1 /* key */
            instanceof javax.crypto.interfaces.DHPublicKey
            ifeq 9
         1: .line 55
            aload 1 /* key */
            checkcast javax.crypto.interfaces.DHPublicKey
            astore 2 /* dhKey */
        start local 2 // javax.crypto.interfaces.DHPublicKey dhKey
         2: .line 56
            aload 2 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 3 /* params */
        start local 3 // javax.crypto.spec.DHParameterSpec params
         3: .line 57
            aload 0 /* this */
         4: .line 58
            aload 2 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getY:()Ljava/math/BigInteger;
         5: .line 59
            aload 3 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
         6: .line 60
            aload 3 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
         7: .line 57
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.generatePublic:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PublicKey;
         8: areturn
        end local 3 // javax.crypto.spec.DHParameterSpec params
        end local 2 // javax.crypto.interfaces.DHPublicKey dhKey
         9: .line 62
      StackMap locals:
      StackMap stack:
            ldc "X.509"
            aload 1 /* key */
            invokeinterface java.security.PublicKey.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
        10: .line 65
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implGetSoftwareFactory:()Ljava/security/KeyFactory;
            astore 2 /* factory */
        start local 2 // java.security.KeyFactory factory
        11: .line 66
            aload 2 /* factory */
            aload 1 /* key */
            invokevirtual java.security.KeyFactory.translateKey:(Ljava/security/Key;)Ljava/security/Key;
            checkcast java.security.PublicKey
            astore 1 /* key */
        12: .line 67
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implTranslatePublicKey:(Ljava/security/PublicKey;)Ljava/security/PublicKey;
        13: areturn
        end local 2 // java.security.KeyFactory factory
        14: .line 68
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
        15: .line 69
            new java.security.InvalidKeyException
            dup
            ldc "Could not translate key"
            aload 2 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
        16: .line 72
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "PublicKey must be instance of DHPublicKey or have X.509 encoding"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 75
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 2 /* e */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        18: .line 76
            new java.security.InvalidKeyException
            dup
            ldc "Could not create DH public key"
            aload 2 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 1 // java.security.PublicKey key
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   19     1      key  Ljava/security/PublicKey;
            2    9     2    dhKey  Ljavax/crypto/interfaces/DHPublicKey;
            3    9     3   params  Ljavax/crypto/spec/DHParameterSpec;
           11   14     2  factory  Ljava/security/KeyFactory;
           15   16     2        e  Ljava/security/GeneralSecurityException;
           18   19     2        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          10    13      14  Class java.security.GeneralSecurityException
           0     8      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
           9    13      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
          14    17      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  java.security.PrivateKey implTranslatePrivateKey(java.security.PrivateKey);
    descriptor: (Ljava/security/PrivateKey;)Ljava/security/PrivateKey;
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.security.PrivateKey key
         0: .line 83
            aload 1 /* key */
            instanceof javax.crypto.interfaces.DHPrivateKey
            ifeq 9
         1: .line 84
            aload 1 /* key */
            checkcast javax.crypto.interfaces.DHPrivateKey
            astore 2 /* dhKey */
        start local 2 // javax.crypto.interfaces.DHPrivateKey dhKey
         2: .line 85
            aload 2 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPrivateKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 3 /* params */
        start local 3 // javax.crypto.spec.DHParameterSpec params
         3: .line 86
            aload 0 /* this */
         4: .line 87
            aload 2 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPrivateKey.getX:()Ljava/math/BigInteger;
         5: .line 88
            aload 3 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
         6: .line 89
            aload 3 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
         7: .line 86
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.generatePrivate:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PrivateKey;
         8: areturn
        end local 3 // javax.crypto.spec.DHParameterSpec params
        end local 2 // javax.crypto.interfaces.DHPrivateKey dhKey
         9: .line 91
      StackMap locals:
      StackMap stack:
            ldc "PKCS#8"
            aload 1 /* key */
            invokeinterface java.security.PrivateKey.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
        10: .line 94
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implGetSoftwareFactory:()Ljava/security/KeyFactory;
            astore 2 /* factory */
        start local 2 // java.security.KeyFactory factory
        11: .line 95
            aload 2 /* factory */
            aload 1 /* key */
            invokevirtual java.security.KeyFactory.translateKey:(Ljava/security/Key;)Ljava/security/Key;
            checkcast java.security.PrivateKey
            astore 1 /* key */
        12: .line 96
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implTranslatePrivateKey:(Ljava/security/PrivateKey;)Ljava/security/PrivateKey;
        13: areturn
        end local 2 // java.security.KeyFactory factory
        14: .line 97
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
        15: .line 98
            new java.security.InvalidKeyException
            dup
            ldc "Could not translate key"
            aload 2 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
        16: .line 101
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "PrivateKey must be instance of DHPrivateKey or have PKCS#8 encoding"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 104
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 2 /* e */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        18: .line 105
            new java.security.InvalidKeyException
            dup
            ldc "Could not create DH private key"
            aload 2 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 1 // java.security.PrivateKey key
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   19     1      key  Ljava/security/PrivateKey;
            2    9     2    dhKey  Ljavax/crypto/interfaces/DHPrivateKey;
            3    9     3   params  Ljavax/crypto/spec/DHParameterSpec;
           11   14     2  factory  Ljava/security/KeyFactory;
           15   16     2        e  Ljava/security/GeneralSecurityException;
           18   19     2        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          10    13      14  Class java.security.GeneralSecurityException
           0     8      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
           9    13      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
          14    17      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  protected java.security.PublicKey engineGeneratePublic(java.security.spec.KeySpec);
    descriptor: (Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.security.spec.KeySpec keySpec
         0: .line 112
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 113
            aload 1 /* keySpec */
            instanceof java.security.spec.X509EncodedKeySpec
            ifeq 10
         2: .line 115
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implGetSoftwareFactory:()Ljava/security/KeyFactory;
            astore 2 /* factory */
        start local 2 // java.security.KeyFactory factory
         3: .line 116
            aload 2 /* factory */
            aload 1 /* keySpec */
            invokevirtual java.security.KeyFactory.generatePublic:(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
            astore 3 /* key */
        start local 3 // java.security.PublicKey key
         4: .line 117
            aload 0 /* this */
            aload 3 /* key */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implTranslatePublicKey:(Ljava/security/PublicKey;)Ljava/security/PublicKey;
         5: areturn
        end local 3 // java.security.PublicKey key
        end local 2 // java.security.KeyFactory factory
         6: .line 118
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
         7: .line 119
            new java.security.spec.InvalidKeySpecException
            dup
         8: .line 120
            ldc "Could not create DH public key"
            aload 2 /* e */
         9: .line 119
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
        10: .line 123
      StackMap locals:
      StackMap stack:
            aload 1 /* keySpec */
            instanceof javax.crypto.spec.DHPublicKeySpec
            ifne 12
        11: .line 124
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Only DHPublicKeySpec and X509EncodedKeySpec supported for DH public keys"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 128
      StackMap locals:
      StackMap stack:
            aload 1 /* keySpec */
            checkcast javax.crypto.spec.DHPublicKeySpec
            astore 2 /* ds */
        start local 2 // javax.crypto.spec.DHPublicKeySpec ds
        13: .line 129
            aload 0 /* this */
        14: .line 130
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getY:()Ljava/math/BigInteger;
        15: .line 131
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getP:()Ljava/math/BigInteger;
        16: .line 132
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getG:()Ljava/math/BigInteger;
        17: .line 129
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.generatePublic:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PublicKey;
        18: areturn
        end local 2 // javax.crypto.spec.DHPublicKeySpec ds
        19: .line 134
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 2 /* e */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        20: .line 135
            new java.security.spec.InvalidKeySpecException
            dup
        21: .line 136
            ldc "Could not create DH public key"
            aload 2 /* e */
        22: .line 135
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 1 // java.security.spec.KeySpec keySpec
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   23     0     this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   23     1  keySpec  Ljava/security/spec/KeySpec;
            3    6     2  factory  Ljava/security/KeyFactory;
            4    6     3      key  Ljava/security/PublicKey;
            7   10     2        e  Ljava/security/GeneralSecurityException;
           13   19     2       ds  Ljavax/crypto/spec/DHPublicKeySpec;
           20   23     2        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2     5       6  Class java.security.GeneralSecurityException
          12    18      19  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.spec.InvalidKeySpecException
    MethodParameters:
         Name  Flags
      keySpec  

  protected java.security.PrivateKey engineGeneratePrivate(java.security.spec.KeySpec);
    descriptor: (Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.security.spec.KeySpec keySpec
         0: .line 143
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 144
            aload 1 /* keySpec */
            instanceof java.security.spec.PKCS8EncodedKeySpec
            ifeq 10
         2: .line 146
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implGetSoftwareFactory:()Ljava/security/KeyFactory;
            astore 2 /* factory */
        start local 2 // java.security.KeyFactory factory
         3: .line 147
            aload 2 /* factory */
            aload 1 /* keySpec */
            invokevirtual java.security.KeyFactory.generatePrivate:(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;
            astore 3 /* key */
        start local 3 // java.security.PrivateKey key
         4: .line 148
            aload 0 /* this */
            aload 3 /* key */
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.implTranslatePrivateKey:(Ljava/security/PrivateKey;)Ljava/security/PrivateKey;
         5: areturn
        end local 3 // java.security.PrivateKey key
        end local 2 // java.security.KeyFactory factory
         6: .line 149
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
         7: .line 150
            new java.security.spec.InvalidKeySpecException
            dup
         8: .line 151
            ldc "Could not create DH private key"
            aload 2 /* e */
         9: .line 150
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
        10: .line 154
      StackMap locals:
      StackMap stack:
            aload 1 /* keySpec */
            instanceof javax.crypto.spec.DHPrivateKeySpec
            ifne 12
        11: .line 155
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Only DHPrivateKeySpec and PKCS8EncodedKeySpec supported for DH private keys"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 159
      StackMap locals:
      StackMap stack:
            aload 1 /* keySpec */
            checkcast javax.crypto.spec.DHPrivateKeySpec
            astore 2 /* ds */
        start local 2 // javax.crypto.spec.DHPrivateKeySpec ds
        13: .line 160
            aload 0 /* this */
        14: .line 161
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPrivateKeySpec.getX:()Ljava/math/BigInteger;
        15: .line 162
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPrivateKeySpec.getP:()Ljava/math/BigInteger;
        16: .line 163
            aload 2 /* ds */
            invokevirtual javax.crypto.spec.DHPrivateKeySpec.getG:()Ljava/math/BigInteger;
        17: .line 160
            invokevirtual sun.security.pkcs11.P11DHKeyFactory.generatePrivate:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PrivateKey;
        18: areturn
        end local 2 // javax.crypto.spec.DHPrivateKeySpec ds
        19: .line 165
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 2 /* e */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        20: .line 166
            new java.security.spec.InvalidKeySpecException
            dup
        21: .line 167
            ldc "Could not create DH private key"
            aload 2 /* e */
        22: .line 166
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 1 // java.security.spec.KeySpec keySpec
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   23     0     this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   23     1  keySpec  Ljava/security/spec/KeySpec;
            3    6     2  factory  Ljava/security/KeyFactory;
            4    6     3      key  Ljava/security/PrivateKey;
            7   10     2        e  Ljava/security/GeneralSecurityException;
           13   19     2       ds  Ljavax/crypto/spec/DHPrivateKeySpec;
           20   23     2        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2     5       6  Class java.security.GeneralSecurityException
          12    18      19  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.spec.InvalidKeySpecException
    MethodParameters:
         Name  Flags
      keySpec  

  private java.security.PublicKey generatePublic(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PublicKey;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=10, args_size=4
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.math.BigInteger y
        start local 2 // java.math.BigInteger p
        start local 3 // java.math.BigInteger g
         0: .line 173
            iconst_5
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         1: .line 174
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            lconst_0
            ldc 2
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_1
         2: .line 175
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 256
            ldc 2
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_2
         3: .line 176
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            aload 1 /* y */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
            dup
            iconst_3
         4: .line 177
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 304
            aload 2 /* p */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
            dup
            iconst_4
         5: .line 178
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 306
            aload 3 /* g */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
         6: .line 173
            astore 4 /* attributes */
        start local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 180
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
         8: .line 181
            ldc "import"
            ldc 2
            ldc 2
            aload 4 /* attributes */
         9: .line 180
            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 */
        10: .line 182
            aconst_null
            astore 5 /* session */
        start local 5 // sun.security.pkcs11.Session session
        11: .line 184
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            astore 5 /* session */
        12: .line 185
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* attributes */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_CreateObject:(J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 6 /* keyID */
        start local 6 // long keyID
        13: .line 187
            aload 5 /* session */
            lload 6 /* keyID */
            ldc "DH"
            aload 2 /* p */
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 4 /* attributes */
        14: .line 186
            invokestatic sun.security.pkcs11.P11Key.publicKey:(Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)Ljava/security/PublicKey;
            astore 9
        15: .line 189
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        16: .line 186
            aload 9
            areturn
        end local 6 // long keyID
        17: .line 188
      StackMap locals: sun.security.pkcs11.P11DHKeyFactory java.math.BigInteger java.math.BigInteger java.math.BigInteger sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] sun.security.pkcs11.Session
      StackMap stack: java.lang.Throwable
            astore 8
        18: .line 189
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        19: .line 190
            aload 8
            athrow
        end local 5 // sun.security.pkcs11.Session session
        end local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        end local 3 // java.math.BigInteger g
        end local 2 // java.math.BigInteger p
        end local 1 // java.math.BigInteger y
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   20     1           y  Ljava/math/BigInteger;
            0   20     2           p  Ljava/math/BigInteger;
            0   20     3           g  Ljava/math/BigInteger;
            7   20     4  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           11   20     5     session  Lsun/security/pkcs11/Session;
           13   17     6       keyID  J
      Exception table:
        from    to  target  type
          11    15      17  any
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
      Name  Flags
      y     
      p     
      g     

  private java.security.PrivateKey generatePrivate(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/PrivateKey;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=10, args_size=4
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // java.math.BigInteger x
        start local 2 // java.math.BigInteger p
        start local 3 // java.math.BigInteger g
         0: .line 195
            iconst_5
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         1: .line 196
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            lconst_0
            ldc 3
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_1
         2: .line 197
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 256
            ldc 2
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_2
         3: .line 198
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            aload 1 /* x */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
            dup
            iconst_3
         4: .line 199
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 304
            aload 2 /* p */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
            dup
            iconst_4
         5: .line 200
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 306
            aload 3 /* g */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/math/BigInteger;)V
            aastore
         6: .line 195
            astore 4 /* attributes */
        start local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 202
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
         8: .line 203
            ldc "import"
            ldc 3
            ldc 2
            aload 4 /* attributes */
         9: .line 202
            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 */
        10: .line 204
            aconst_null
            astore 5 /* session */
        start local 5 // sun.security.pkcs11.Session session
        11: .line 206
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            astore 5 /* session */
        12: .line 207
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* attributes */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_CreateObject:(J[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 6 /* keyID */
        start local 6 // long keyID
        13: .line 209
            aload 5 /* session */
            lload 6 /* keyID */
            ldc "DH"
            aload 2 /* p */
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 4 /* attributes */
        14: .line 208
            invokestatic sun.security.pkcs11.P11Key.privateKey:(Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)Ljava/security/PrivateKey;
            astore 9
        15: .line 211
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        16: .line 208
            aload 9
            areturn
        end local 6 // long keyID
        17: .line 210
      StackMap locals: sun.security.pkcs11.P11DHKeyFactory java.math.BigInteger java.math.BigInteger java.math.BigInteger sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] sun.security.pkcs11.Session
      StackMap stack: java.lang.Throwable
            astore 8
        18: .line 211
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            aload 5 /* session */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        19: .line 212
            aload 8
            athrow
        end local 5 // sun.security.pkcs11.Session session
        end local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        end local 3 // java.math.BigInteger g
        end local 2 // java.math.BigInteger p
        end local 1 // java.math.BigInteger x
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   20     1           x  Ljava/math/BigInteger;
            0   20     2           p  Ljava/math/BigInteger;
            0   20     3           g  Ljava/math/BigInteger;
            7   20     4  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           11   20     5     session  Lsun/security/pkcs11/Session;
           13   17     6       keyID  J
      Exception table:
        from    to  target  type
          11    15      17  any
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
      Name  Flags
      x     
      p     
      g     

  <T extends java.security.spec.KeySpec> T implGetPublicKeySpec(sun.security.pkcs11.P11Key, java.lang.Class<T>, sun.security.pkcs11.Session[]);
    descriptor: (Lsun/security/pkcs11/P11Key;Ljava/lang/Class;[Lsun/security/pkcs11/Session;)Ljava/security/spec/KeySpec;
    flags: (0x0000) 
    Code:
      stack=7, locals=8, args_size=4
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // sun.security.pkcs11.P11Key key
        start local 2 // java.lang.Class keySpec
        start local 3 // sun.security.pkcs11.Session[] session
         0: .line 217
            ldc Ljavax/crypto/spec/DHPublicKeySpec;
            aload 2 /* keySpec */
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 20
         1: .line 218
            aload 3 /* session */
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            aastore
         2: .line 219
            iconst_3
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         3: .line 220
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
            dup
            iconst_1
         4: .line 221
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 304
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
            dup
            iconst_2
         5: .line 222
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 306
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
         6: .line 219
            astore 4 /* attributes */
        start local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 224
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 5 /* keyID */
        start local 5 // long keyID
         8: .line 226
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 3 /* session */
            iconst_0
            aaload
            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
         9: .line 227
            goto 13
      StackMap locals: sun.security.pkcs11.P11DHKeyFactory sun.security.pkcs11.P11Key java.lang.Class sun.security.pkcs11.Session[] sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] long
      StackMap stack: java.lang.Throwable
        10: astore 7
        11: .line 228
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        12: .line 229
            aload 7
            athrow
        13: .line 228
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        14: .line 230
            new javax.crypto.spec.DHPublicKeySpec
            dup
        15: .line 231
            aload 4 /* attributes */
            iconst_0
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        16: .line 232
            aload 4 /* attributes */
            iconst_1
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        17: .line 233
            aload 4 /* attributes */
            iconst_2
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        18: .line 230
            invokespecial javax.crypto.spec.DHPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            astore 7 /* spec */
        start local 7 // java.security.spec.KeySpec spec
        19: .line 235
            aload 2 /* keySpec */
            aload 7 /* spec */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.security.spec.KeySpec
            areturn
        end local 7 // java.security.spec.KeySpec spec
        end local 5 // long keyID
        end local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        20: .line 237
      StackMap locals:
      StackMap stack:
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Only DHPublicKeySpec and X509EncodedKeySpec supported for DH public keys"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // sun.security.pkcs11.Session[] session
        end local 2 // java.lang.Class keySpec
        end local 1 // sun.security.pkcs11.P11Key key
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   21     1         key  Lsun/security/pkcs11/P11Key;
            0   21     2     keySpec  Ljava/lang/Class<TT;>;
            0   21     3     session  [Lsun/security/pkcs11/Session;
            7   20     4  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            8   20     5       keyID  J
           19   20     7        spec  Ljava/security/spec/KeySpec;
      Exception table:
        from    to  target  type
           8    10      10  any
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception, java.security.spec.InvalidKeySpecException
    Signature: <T::Ljava/security/spec/KeySpec;>(Lsun/security/pkcs11/P11Key;Ljava/lang/Class<TT;>;[Lsun/security/pkcs11/Session;)TT;
    MethodParameters:
         Name  Flags
      key      
      keySpec  
      session  

  <T extends java.security.spec.KeySpec> T implGetPrivateKeySpec(sun.security.pkcs11.P11Key, java.lang.Class<T>, sun.security.pkcs11.Session[]);
    descriptor: (Lsun/security/pkcs11/P11Key;Ljava/lang/Class;[Lsun/security/pkcs11/Session;)Ljava/security/spec/KeySpec;
    flags: (0x0000) 
    Code:
      stack=7, locals=8, args_size=4
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
        start local 1 // sun.security.pkcs11.P11Key key
        start local 2 // java.lang.Class keySpec
        start local 3 // sun.security.pkcs11.Session[] session
         0: .line 244
            ldc Ljavax/crypto/spec/DHPrivateKeySpec;
            aload 2 /* keySpec */
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 20
         1: .line 245
            aload 3 /* session */
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            aastore
         2: .line 246
            iconst_3
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         3: .line 247
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
            dup
            iconst_1
         4: .line 248
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 304
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
            dup
            iconst_2
         5: .line 249
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 306
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
         6: .line 246
            astore 4 /* attributes */
        start local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 251
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 5 /* keyID */
        start local 5 // long keyID
         8: .line 253
            aload 0 /* this */
            getfield sun.security.pkcs11.P11DHKeyFactory.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 3 /* session */
            iconst_0
            aaload
            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
         9: .line 254
            goto 13
      StackMap locals: sun.security.pkcs11.P11DHKeyFactory sun.security.pkcs11.P11Key java.lang.Class sun.security.pkcs11.Session[] sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] long
      StackMap stack: java.lang.Throwable
        10: astore 7
        11: .line 255
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        12: .line 256
            aload 7
            athrow
        13: .line 255
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        14: .line 257
            new javax.crypto.spec.DHPrivateKeySpec
            dup
        15: .line 258
            aload 4 /* attributes */
            iconst_0
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        16: .line 259
            aload 4 /* attributes */
            iconst_1
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        17: .line 260
            aload 4 /* attributes */
            iconst_2
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
        18: .line 257
            invokespecial javax.crypto.spec.DHPrivateKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            astore 7 /* spec */
        start local 7 // java.security.spec.KeySpec spec
        19: .line 262
            aload 2 /* keySpec */
            aload 7 /* spec */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.security.spec.KeySpec
            areturn
        end local 7 // java.security.spec.KeySpec spec
        end local 5 // long keyID
        end local 4 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        20: .line 264
      StackMap locals:
      StackMap stack:
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Only DHPrivateKeySpec and PKCS8EncodedKeySpec supported for DH private keys"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // sun.security.pkcs11.Session[] session
        end local 2 // java.lang.Class keySpec
        end local 1 // sun.security.pkcs11.P11Key key
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        this  Lsun/security/pkcs11/P11DHKeyFactory;
            0   21     1         key  Lsun/security/pkcs11/P11Key;
            0   21     2     keySpec  Ljava/lang/Class<TT;>;
            0   21     3     session  [Lsun/security/pkcs11/Session;
            7   20     4  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            8   20     5       keyID  J
           19   20     7        spec  Ljava/security/spec/KeySpec;
      Exception table:
        from    to  target  type
           8    10      10  any
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception, java.security.spec.InvalidKeySpecException
    Signature: <T::Ljava/security/spec/KeySpec;>(Lsun/security/pkcs11/P11Key;Ljava/lang/Class<TT;>;[Lsun/security/pkcs11/Session;)TT;
    MethodParameters:
         Name  Flags
      key      
      keySpec  
      session  

  java.security.KeyFactory implGetSoftwareFactory();
    descriptor: ()Ljava/security/KeyFactory;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11DHKeyFactory this
         0: .line 270
            ldc "DH"
            invokestatic sun.security.pkcs11.P11Util.getSunJceProvider:()Ljava/security/Provider;
            invokestatic java.security.KeyFactory.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/KeyFactory;
            areturn
        end local 0 // sun.security.pkcs11.P11DHKeyFactory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11DHKeyFactory;
    Exceptions:
      throws java.security.GeneralSecurityException
}
SourceFile: "P11DHKeyFactory.java"