final class sun.security.ssl.DHCrypt
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.DHCrypt
  super_class: java.lang.Object
{
  private java.math.BigInteger modulus;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE

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

  private java.security.PrivateKey privateKey;
    descriptor: Ljava/security/PrivateKey;
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 100
            iconst_2
            putstatic sun.security.ssl.DHCrypt.MAX_FAILOVER_TIMES:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int, java.security.SecureRandom);
    descriptor: (ILjava/security/SecureRandom;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // int keyLength
        start local 2 // java.security.SecureRandom random
         0: .line 106
            aload 0 /* this */
            iload 1 /* keyLength */
         1: .line 107
            getstatic sun.security.ssl.DHCrypt$ParametersHolder.definedParams:Ljava/util/Map;
            iload 1 /* keyLength */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.crypto.spec.DHParameterSpec
            aload 2 /* random */
            invokespecial sun.security.ssl.DHCrypt.<init>:(ILjavax/crypto/spec/DHParameterSpec;Ljava/security/SecureRandom;)V
         2: .line 108
            return
        end local 2 // java.security.SecureRandom random
        end local 1 // int keyLength
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lsun/security/ssl/DHCrypt;
            0    3     1  keyLength  I
            0    3     2     random  Ljava/security/SecureRandom;
    MethodParameters:
           Name  Flags
      keyLength  
      random     

  void <init>(java.math.BigInteger, java.math.BigInteger, java.security.SecureRandom);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/security/SecureRandom;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // java.math.BigInteger modulus
        start local 2 // java.math.BigInteger base
        start local 3 // java.security.SecureRandom random
         0: .line 117
            aload 0 /* this */
            aload 1 /* modulus */
            invokevirtual java.math.BigInteger.bitLength:()I
         1: .line 118
            new javax.crypto.spec.DHParameterSpec
            dup
            aload 1 /* modulus */
            aload 2 /* base */
            invokespecial javax.crypto.spec.DHParameterSpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            aload 3 /* random */
            invokespecial sun.security.ssl.DHCrypt.<init>:(ILjavax/crypto/spec/DHParameterSpec;Ljava/security/SecureRandom;)V
         2: .line 119
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.math.BigInteger base
        end local 1 // java.math.BigInteger modulus
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lsun/security/ssl/DHCrypt;
            0    3     1  modulus  Ljava/math/BigInteger;
            0    3     2     base  Ljava/math/BigInteger;
            0    3     3   random  Ljava/security/SecureRandom;
    MethodParameters:
         Name  Flags
      modulus  
      base     
      random   

  private void <init>(int, javax.crypto.spec.DHParameterSpec, java.security.SecureRandom);
    descriptor: (ILjavax/crypto/spec/DHParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // int keyLength
        start local 2 // javax.crypto.spec.DHParameterSpec params
        start local 3 // java.security.SecureRandom random
         0: .line 125
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 129
            ldc "DiffieHellman"
            invokestatic sun.security.ssl.JsseJce.getKeyPairGenerator:(Ljava/lang/String;)Ljava/security/KeyPairGenerator;
            astore 4 /* kpg */
        start local 4 // java.security.KeyPairGenerator kpg
         2: .line 130
            aload 2 /* params */
            ifnull 5
         3: .line 131
            aload 4 /* kpg */
            aload 2 /* params */
            aload 3 /* random */
            invokevirtual java.security.KeyPairGenerator.initialize:(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         4: .line 132
            goto 6
         5: .line 133
      StackMap locals: sun.security.ssl.DHCrypt int javax.crypto.spec.DHParameterSpec java.security.SecureRandom java.security.KeyPairGenerator
      StackMap stack:
            aload 4 /* kpg */
            iload 1 /* keyLength */
            aload 3 /* random */
            invokevirtual java.security.KeyPairGenerator.initialize:(ILjava/security/SecureRandom;)V
         6: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* kpg */
            invokevirtual sun.security.ssl.DHCrypt.generateDHPublicKeySpec:(Ljava/security/KeyPairGenerator;)Ljavax/crypto/spec/DHPublicKeySpec;
            astore 5 /* spec */
        start local 5 // javax.crypto.spec.DHPublicKeySpec spec
         7: .line 136
            aload 5 /* spec */
            ifnonnull 9
         8: .line 137
            new java.lang.RuntimeException
            dup
            ldc "Could not generate DH keypair"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 139
      StackMap locals: javax.crypto.spec.DHPublicKeySpec
      StackMap stack:
            aload 0 /* this */
            aload 5 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getY:()Ljava/math/BigInteger;
            putfield sun.security.ssl.DHCrypt.publicValue:Ljava/math/BigInteger;
        10: .line 140
            aload 0 /* this */
            aload 5 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getP:()Ljava/math/BigInteger;
            putfield sun.security.ssl.DHCrypt.modulus:Ljava/math/BigInteger;
        11: .line 141
            aload 0 /* this */
            aload 5 /* spec */
            invokevirtual javax.crypto.spec.DHPublicKeySpec.getG:()Ljava/math/BigInteger;
            putfield sun.security.ssl.DHCrypt.base:Ljava/math/BigInteger;
        end local 5 // javax.crypto.spec.DHPublicKeySpec spec
        end local 4 // java.security.KeyPairGenerator kpg
        12: .line 142
            goto 15
      StackMap locals: sun.security.ssl.DHCrypt int javax.crypto.spec.DHParameterSpec java.security.SecureRandom
      StackMap stack: java.security.GeneralSecurityException
        13: astore 4 /* e */
        start local 4 // java.security.GeneralSecurityException e
        14: .line 143
            new java.lang.RuntimeException
            dup
            ldc "Could not generate DH keypair"
            aload 4 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.security.GeneralSecurityException e
        15: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // javax.crypto.spec.DHParameterSpec params
        end local 1 // int keyLength
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lsun/security/ssl/DHCrypt;
            0   16     1  keyLength  I
            0   16     2     params  Ljavax/crypto/spec/DHParameterSpec;
            0   16     3     random  Ljava/security/SecureRandom;
            2   12     4        kpg  Ljava/security/KeyPairGenerator;
            7   12     5       spec  Ljavax/crypto/spec/DHPublicKeySpec;
           14   15     4          e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           1    12      13  Class java.security.GeneralSecurityException
    MethodParameters:
           Name  Flags
      keyLength  
      params     
      random     

  static javax.crypto.spec.DHPublicKeySpec getDHPublicKeySpec(java.security.PublicKey);
    descriptor: (Ljava/security/PublicKey;)Ljavax/crypto/spec/DHPublicKeySpec;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // java.security.PublicKey key
         0: .line 148
            aload 0 /* key */
            instanceof javax.crypto.interfaces.DHPublicKey
            ifeq 6
         1: .line 149
            aload 0 /* key */
            checkcast javax.crypto.interfaces.DHPublicKey
            astore 1 /* dhKey */
        start local 1 // javax.crypto.interfaces.DHPublicKey dhKey
         2: .line 150
            aload 1 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 2 /* params */
        start local 2 // javax.crypto.spec.DHParameterSpec params
         3: .line 151
            new javax.crypto.spec.DHPublicKeySpec
            dup
            aload 1 /* dhKey */
            invokeinterface javax.crypto.interfaces.DHPublicKey.getY:()Ljava/math/BigInteger;
         4: .line 152
            aload 2 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
            aload 2 /* params */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
         5: .line 151
            invokespecial javax.crypto.spec.DHPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
        end local 2 // javax.crypto.spec.DHParameterSpec params
        end local 1 // javax.crypto.interfaces.DHPublicKey dhKey
         6: .line 155
      StackMap locals:
      StackMap stack:
            ldc "DiffieHellman"
            invokestatic sun.security.ssl.JsseJce.getKeyFactory:(Ljava/lang/String;)Ljava/security/KeyFactory;
            astore 1 /* factory */
        start local 1 // java.security.KeyFactory factory
         7: .line 156
            aload 1 /* factory */
            aload 0 /* key */
            ldc Ljavax/crypto/spec/DHPublicKeySpec;
            invokevirtual java.security.KeyFactory.getKeySpec:(Ljava/security/Key;Ljava/lang/Class;)Ljava/security/spec/KeySpec;
            checkcast javax.crypto.spec.DHPublicKeySpec
         8: areturn
        end local 1 // java.security.KeyFactory factory
         9: .line 157
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        10: .line 158
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // java.security.PublicKey key
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0      key  Ljava/security/PublicKey;
            2    6     1    dhKey  Ljavax/crypto/interfaces/DHPublicKey;
            3    6     2   params  Ljavax/crypto/spec/DHParameterSpec;
            7    9     1  factory  Ljava/security/KeyFactory;
           10   11     1        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           6     8       9  Class java.lang.Exception
    MethodParameters:
      Name  Flags
      key   

  java.math.BigInteger getModulus();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.DHCrypt this
         0: .line 165
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.modulus:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/DHCrypt;

  java.math.BigInteger getBase();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.DHCrypt this
         0: .line 170
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.base:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/DHCrypt;

  java.math.BigInteger getPublicKey();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.DHCrypt this
         0: .line 177
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.publicValue:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/DHCrypt;

  javax.crypto.SecretKey getAgreedSecret(java.math.BigInteger, boolean);
    descriptor: (Ljava/math/BigInteger;Z)Ljavax/crypto/SecretKey;
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // java.math.BigInteger peerPublicValue
        start local 2 // boolean keyIsValidated
         0: .line 199
            ldc "DiffieHellman"
            invokestatic sun.security.ssl.JsseJce.getKeyFactory:(Ljava/lang/String;)Ljava/security/KeyFactory;
            astore 3 /* kf */
        start local 3 // java.security.KeyFactory kf
         1: .line 201
            new javax.crypto.spec.DHPublicKeySpec
            dup
            aload 1 /* peerPublicValue */
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.modulus:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.base:Ljava/math/BigInteger;
            invokespecial javax.crypto.spec.DHPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
         2: .line 200
            astore 4 /* spec */
        start local 4 // javax.crypto.spec.DHPublicKeySpec spec
         3: .line 202
            aload 3 /* kf */
            aload 4 /* spec */
            invokevirtual java.security.KeyFactory.generatePublic:(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
            astore 5 /* publicKey */
        start local 5 // java.security.PublicKey publicKey
         4: .line 203
            ldc "DiffieHellman"
            invokestatic sun.security.ssl.JsseJce.getKeyAgreement:(Ljava/lang/String;)Ljavax/crypto/KeyAgreement;
            astore 6 /* ka */
        start local 6 // javax.crypto.KeyAgreement ka
         5: .line 205
            iload 2 /* keyIsValidated */
            ifne 11
         6: .line 206
            aload 6 /* ka */
            invokevirtual javax.crypto.KeyAgreement.getProvider:()Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokestatic sun.security.util.KeyUtil.isOracleJCEProvider:(Ljava/lang/String;)Z
            ifne 11
         7: .line 208
            aload 4 /* spec */
            invokestatic sun.security.util.KeyUtil.validate:(Ljava/security/spec/KeySpec;)V
         8: .line 209
            goto 11
      StackMap locals: sun.security.ssl.DHCrypt java.math.BigInteger int java.security.KeyFactory javax.crypto.spec.DHPublicKeySpec java.security.PublicKey javax.crypto.KeyAgreement
      StackMap stack: java.security.InvalidKeyException
         9: astore 7 /* ike */
        start local 7 // java.security.InvalidKeyException ike
        10: .line 211
            new javax.net.ssl.SSLHandshakeException
            dup
            aload 7 /* ike */
            invokevirtual java.security.InvalidKeyException.getMessage:()Ljava/lang/String;
            invokespecial javax.net.ssl.SSLHandshakeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // java.security.InvalidKeyException ike
        11: .line 214
      StackMap locals:
      StackMap stack:
            aload 6 /* ka */
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.privateKey:Ljava/security/PrivateKey;
            invokevirtual javax.crypto.KeyAgreement.init:(Ljava/security/Key;)V
        12: .line 215
            aload 6 /* ka */
            aload 5 /* publicKey */
            iconst_1
            invokevirtual javax.crypto.KeyAgreement.doPhase:(Ljava/security/Key;Z)Ljava/security/Key;
            pop
        13: .line 216
            aload 6 /* ka */
            ldc "TlsPremasterSecret"
            invokevirtual javax.crypto.KeyAgreement.generateSecret:(Ljava/lang/String;)Ljavax/crypto/SecretKey;
        14: areturn
        end local 6 // javax.crypto.KeyAgreement ka
        end local 5 // java.security.PublicKey publicKey
        end local 4 // javax.crypto.spec.DHPublicKeySpec spec
        end local 3 // java.security.KeyFactory kf
        15: .line 217
      StackMap locals: sun.security.ssl.DHCrypt java.math.BigInteger int
      StackMap stack: java.security.GeneralSecurityException
            astore 3 /* e */
        start local 3 // java.security.GeneralSecurityException e
        16: .line 218
            new javax.net.ssl.SSLHandshakeException
            dup
        17: .line 219
            ldc "Could not generate secret"
        18: .line 218
            invokespecial javax.net.ssl.SSLHandshakeException.<init>:(Ljava/lang/String;)V
        19: .line 219
            aload 3 /* e */
            invokevirtual javax.net.ssl.SSLHandshakeException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        20: .line 218
            checkcast javax.net.ssl.SSLHandshakeException
            athrow
        end local 3 // java.security.GeneralSecurityException e
        end local 2 // boolean keyIsValidated
        end local 1 // java.math.BigInteger peerPublicValue
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   21     0             this  Lsun/security/ssl/DHCrypt;
            0   21     1  peerPublicValue  Ljava/math/BigInteger;
            0   21     2   keyIsValidated  Z
            1   15     3               kf  Ljava/security/KeyFactory;
            3   15     4             spec  Ljavax/crypto/spec/DHPublicKeySpec;
            4   15     5        publicKey  Ljava/security/PublicKey;
            5   15     6               ka  Ljavax/crypto/KeyAgreement;
           10   11     7              ike  Ljava/security/InvalidKeyException;
           16   21     3                e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           7     8       9  Class java.security.InvalidKeyException
           0    14      15  Class java.security.GeneralSecurityException
    Exceptions:
      throws javax.net.ssl.SSLHandshakeException
    MethodParameters:
                 Name  Flags
      peerPublicValue  
      keyIsValidated   

  void checkConstraints(sun.security.util.AlgorithmConstraints, java.math.BigInteger);
    descriptor: (Lsun/security/util/AlgorithmConstraints;Ljava/math/BigInteger;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // sun.security.util.AlgorithmConstraints constraints
        start local 2 // java.math.BigInteger peerPublicValue
         0: .line 228
            ldc "DiffieHellman"
            invokestatic sun.security.ssl.JsseJce.getKeyFactory:(Ljava/lang/String;)Ljava/security/KeyFactory;
            astore 3 /* kf */
        start local 3 // java.security.KeyFactory kf
         1: .line 230
            new javax.crypto.spec.DHPublicKeySpec
            dup
            aload 2 /* peerPublicValue */
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.modulus:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield sun.security.ssl.DHCrypt.base:Ljava/math/BigInteger;
            invokespecial javax.crypto.spec.DHPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
         2: .line 229
            astore 4 /* spec */
        start local 4 // javax.crypto.spec.DHPublicKeySpec spec
         3: .line 231
            aload 3 /* kf */
            aload 4 /* spec */
            invokevirtual java.security.KeyFactory.generatePublic:(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
            checkcast javax.crypto.interfaces.DHPublicKey
            astore 5 /* publicKey */
        start local 5 // javax.crypto.interfaces.DHPublicKey publicKey
         4: .line 234
            aload 1 /* constraints */
         5: .line 235
            getstatic sun.security.util.CryptoPrimitive.KEY_AGREEMENT:Lsun/security/util/CryptoPrimitive;
            invokestatic java.util.EnumSet.of:(Ljava/lang/Enum;)Ljava/util/EnumSet;
            aload 5 /* publicKey */
         6: .line 234
            invokeinterface sun.security.util.AlgorithmConstraints.permits:(Ljava/util/Set;Ljava/security/Key;)Z
         7: .line 235
            ifne 17
         8: .line 236
            new javax.net.ssl.SSLHandshakeException
            dup
         9: .line 237
            ldc "DHPublicKey does not comply to algorithm constraints"
        10: .line 236
            invokespecial javax.net.ssl.SSLHandshakeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // javax.crypto.interfaces.DHPublicKey publicKey
        end local 4 // javax.crypto.spec.DHPublicKeySpec spec
        end local 3 // java.security.KeyFactory kf
        11: .line 239
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 3 /* gse */
        start local 3 // java.security.GeneralSecurityException gse
        12: .line 240
            new javax.net.ssl.SSLHandshakeException
            dup
        13: .line 241
            ldc "Could not generate DHPublicKey"
        14: .line 240
            invokespecial javax.net.ssl.SSLHandshakeException.<init>:(Ljava/lang/String;)V
        15: .line 241
            aload 3 /* gse */
            invokevirtual javax.net.ssl.SSLHandshakeException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        16: .line 240
            checkcast javax.net.ssl.SSLHandshakeException
            athrow
        end local 3 // java.security.GeneralSecurityException gse
        17: .line 243
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.math.BigInteger peerPublicValue
        end local 1 // sun.security.util.AlgorithmConstraints constraints
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0             this  Lsun/security/ssl/DHCrypt;
            0   18     1      constraints  Lsun/security/util/AlgorithmConstraints;
            0   18     2  peerPublicValue  Ljava/math/BigInteger;
            1   11     3               kf  Ljava/security/KeyFactory;
            3   11     4             spec  Ljavax/crypto/spec/DHPublicKeySpec;
            4   11     5        publicKey  Ljavax/crypto/interfaces/DHPublicKey;
           12   17     3              gse  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           0    11      11  Class java.security.GeneralSecurityException
    Exceptions:
      throws javax.net.ssl.SSLHandshakeException
    MethodParameters:
                 Name  Flags
      constraints      
      peerPublicValue  

  private javax.crypto.spec.DHPublicKeySpec generateDHPublicKeySpec(java.security.KeyPairGenerator);
    descriptor: (Ljava/security/KeyPairGenerator;)Ljavax/crypto/spec/DHPublicKeySpec;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // sun.security.ssl.DHCrypt this
        start local 1 // java.security.KeyPairGenerator kpg
         0: .line 250
            aload 1 /* kpg */
            invokevirtual java.security.KeyPairGenerator.getProvider:()Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokestatic sun.security.util.KeyUtil.isOracleJCEProvider:(Ljava/lang/String;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
         2: .line 249
      StackMap locals:
      StackMap stack: int
            istore 2 /* doExtraValiadtion */
        start local 2 // boolean doExtraValiadtion
         3: .line 251
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 16
         5: .line 252
      StackMap locals: int int
      StackMap stack:
            aload 1 /* kpg */
            invokevirtual java.security.KeyPairGenerator.generateKeyPair:()Ljava/security/KeyPair;
            astore 4 /* kp */
        start local 4 // java.security.KeyPair kp
         6: .line 253
            aload 0 /* this */
            aload 4 /* kp */
            invokevirtual java.security.KeyPair.getPrivate:()Ljava/security/PrivateKey;
            putfield sun.security.ssl.DHCrypt.privateKey:Ljava/security/PrivateKey;
         7: .line 254
            aload 4 /* kp */
            invokevirtual java.security.KeyPair.getPublic:()Ljava/security/PublicKey;
            invokestatic sun.security.ssl.DHCrypt.getDHPublicKeySpec:(Ljava/security/PublicKey;)Ljavax/crypto/spec/DHPublicKeySpec;
            astore 5 /* spec */
        start local 5 // javax.crypto.spec.DHPublicKeySpec spec
         8: .line 257
            iload 2 /* doExtraValiadtion */
            ifeq 14
         9: .line 259
            aload 5 /* spec */
            invokestatic sun.security.util.KeyUtil.validate:(Ljava/security/spec/KeySpec;)V
        10: .line 260
            goto 14
      StackMap locals: sun.security.ssl.DHCrypt java.security.KeyPairGenerator int int java.security.KeyPair javax.crypto.spec.DHPublicKeySpec
      StackMap stack: java.security.InvalidKeyException
        11: astore 6 /* ivke */
        start local 6 // java.security.InvalidKeyException ivke
        12: .line 261
            iload 3 /* i */
            getstatic sun.security.ssl.DHCrypt.MAX_FAILOVER_TIMES:I
            if_icmpne 15
        13: .line 262
            aload 6 /* ivke */
            athrow
        end local 6 // java.security.InvalidKeyException ivke
        14: .line 269
      StackMap locals:
      StackMap stack:
            aload 5 /* spec */
            areturn
        end local 5 // javax.crypto.spec.DHPublicKeySpec spec
        end local 4 // java.security.KeyPair kp
        15: .line 251
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            getstatic sun.security.ssl.DHCrypt.MAX_FAILOVER_TIMES:I
            if_icmple 5
        end local 3 // int i
        17: .line 272
            aconst_null
            areturn
        end local 2 // boolean doExtraValiadtion
        end local 1 // java.security.KeyPairGenerator kpg
        end local 0 // sun.security.ssl.DHCrypt this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   18     0               this  Lsun/security/ssl/DHCrypt;
            0   18     1                kpg  Ljava/security/KeyPairGenerator;
            3   18     2  doExtraValiadtion  Z
            4   17     3                  i  I
            6   15     4                 kp  Ljava/security/KeyPair;
            8   15     5               spec  Ljavax/crypto/spec/DHPublicKeySpec;
           12   14     6               ivke  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           9    10      11  Class java.security.InvalidKeyException
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
      Name  Flags
      kpg   
}
SourceFile: "DHCrypt.java"
NestMembers:
  sun.security.ssl.DHCrypt$ParametersHolder  sun.security.ssl.DHCrypt$ParametersHolder$1
InnerClasses:
  private ParametersHolder = sun.security.ssl.DHCrypt$ParametersHolder of sun.security.ssl.DHCrypt