final class com.sun.crypto.provider.DHPrivateKey implements java.security.PrivateKey, javax.crypto.interfaces.DHPrivateKey, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.crypto.provider.DHPrivateKey
  super_class: java.lang.Object
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 7565477590005668886

  private static final java.math.BigInteger PKCS8_VERSION;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private byte[] key;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private byte[] encodedKey;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 55
            getstatic java.math.BigInteger.ZERO:Ljava/math/BigInteger;
            putstatic com.sun.crypto.provider.DHPrivateKey.PKCS8_VERSION:Ljava/math/BigInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
        start local 1 // java.math.BigInteger x
        start local 2 // java.math.BigInteger p
        start local 3 // java.math.BigInteger g
         0: .line 87
            aload 0 /* this */
            aload 1 /* x */
            aload 2 /* p */
            aload 3 /* g */
            iconst_0
            invokespecial com.sun.crypto.provider.DHPrivateKey.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;I)V
         1: .line 88
            return
        end local 3 // java.math.BigInteger g
        end local 2 // java.math.BigInteger p
        end local 1 // java.math.BigInteger x
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/crypto/provider/DHPrivateKey;
            0    2     1     x  Ljava/math/BigInteger;
            0    2     2     p  Ljava/math/BigInteger;
            0    2     3     g  Ljava/math/BigInteger;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      x     
      p     
      g     

  void <init>(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, int);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
        start local 1 // java.math.BigInteger x
        start local 2 // java.math.BigInteger p
        start local 3 // java.math.BigInteger g
        start local 4 // int l
         0: .line 102
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 103
            aload 0 /* this */
            aload 1 /* x */
            putfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
         2: .line 104
            aload 0 /* this */
            aload 2 /* p */
            putfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
         3: .line 105
            aload 0 /* this */
            aload 3 /* g */
            putfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
         4: .line 106
            aload 0 /* this */
            iload 4 /* l */
            putfield com.sun.crypto.provider.DHPrivateKey.l:I
         5: .line 108
            aload 0 /* this */
            new sun.security.util.DerValue
            dup
            iconst_2
         6: .line 109
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
         7: .line 108
            putfield com.sun.crypto.provider.DHPrivateKey.key:[B
         8: .line 110
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
            putfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
         9: .line 111
            goto 12
      StackMap locals: com.sun.crypto.provider.DHPrivateKey java.math.BigInteger java.math.BigInteger java.math.BigInteger int
      StackMap stack: java.io.IOException
        10: astore 5 /* e */
        start local 5 // java.io.IOException e
        11: .line 112
            new java.security.ProviderException
            dup
            ldc "Cannot produce ASN.1 encoding"
            aload 5 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        12: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int l
        end local 3 // java.math.BigInteger g
        end local 2 // java.math.BigInteger p
        end local 1 // java.math.BigInteger x
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   13     1     x  Ljava/math/BigInteger;
            0   13     2     p  Ljava/math/BigInteger;
            0   13     3     g  Ljava/math/BigInteger;
            0   13     4     l  I
           11   12     5     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     9      10  Class java.io.IOException
    MethodParameters:
      Name  Flags
      x     
      p     
      g     
      l     

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
        start local 1 // byte[] encodedKey
         0: .line 124
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 125
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* encodedKey */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            astore 2 /* inStream */
        start local 2 // java.io.InputStream inStream
         2: .line 127
            new sun.security.util.DerValue
            dup
            aload 2 /* inStream */
            invokespecial sun.security.util.DerValue.<init>:(Ljava/io/InputStream;)V
            astore 3 /* val */
        start local 3 // sun.security.util.DerValue val
         3: .line 128
            aload 3 /* val */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 5
         4: .line 129
            new java.security.InvalidKeyException
            dup
            ldc "Key not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 135
      StackMap locals: com.sun.crypto.provider.DHPrivateKey byte[] java.io.InputStream sun.security.util.DerValue
      StackMap stack:
            aload 3 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getBigInteger:()Ljava/math/BigInteger;
            astore 4 /* parsedVersion */
        start local 4 // java.math.BigInteger parsedVersion
         6: .line 136
            aload 4 /* parsedVersion */
            getstatic com.sun.crypto.provider.DHPrivateKey.PKCS8_VERSION:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifne 11
         7: .line 137
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "version mismatch: (supported: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 138
            getstatic com.sun.crypto.provider.DHPrivateKey.PKCS8_VERSION:Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", parsed: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         9: .line 139
            aload 4 /* parsedVersion */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 137
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 145
      StackMap locals: java.math.BigInteger
      StackMap stack:
            aload 3 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 5 /* algid */
        start local 5 // sun.security.util.DerValue algid
        12: .line 146
            aload 5 /* algid */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 14
        13: .line 147
            new java.security.InvalidKeyException
            dup
            ldc "AlgId is not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 149
      StackMap locals: sun.security.util.DerValue
      StackMap stack:
            aload 5 /* algid */
            invokevirtual sun.security.util.DerValue.toDerInputStream:()Lsun/security/util/DerInputStream;
            astore 6 /* derInStream */
        start local 6 // sun.security.util.DerInputStream derInStream
        15: .line 150
            aload 6 /* derInStream */
            invokevirtual sun.security.util.DerInputStream.getOID:()Lsun/security/util/ObjectIdentifier;
            astore 7 /* oid */
        start local 7 // sun.security.util.ObjectIdentifier oid
        16: .line 151
            aload 7 /* oid */
            ifnonnull 18
        17: .line 152
            new java.security.InvalidKeyException
            dup
            ldc "Null OID"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 154
      StackMap locals: sun.security.util.DerInputStream sun.security.util.ObjectIdentifier
      StackMap stack:
            aload 6 /* derInStream */
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifne 20
        19: .line 155
            new java.security.InvalidKeyException
            dup
            ldc "Parameters missing"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 158
      StackMap locals:
      StackMap stack:
            aload 6 /* derInStream */
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 8 /* params */
        start local 8 // sun.security.util.DerValue params
        21: .line 159
            aload 8 /* params */
            getfield sun.security.util.DerValue.tag:B
            iconst_5
            if_icmpne 23
        22: .line 160
            new java.security.InvalidKeyException
            dup
            ldc "Null parameters"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 162
      StackMap locals: sun.security.util.DerValue
      StackMap stack:
            aload 8 /* params */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 25
        24: .line 163
            new java.security.InvalidKeyException
            dup
            ldc "Parameters not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 165
      StackMap locals:
      StackMap stack:
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.reset:()V
        26: .line 166
            aload 0 /* this */
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getBigInteger:()Ljava/math/BigInteger;
            putfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
        27: .line 167
            aload 0 /* this */
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getBigInteger:()Ljava/math/BigInteger;
            putfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
        28: .line 169
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 30
        29: .line 170
            aload 0 /* this */
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getInteger:()I
            putfield com.sun.crypto.provider.DHPrivateKey.l:I
        30: .line 172
      StackMap locals:
      StackMap stack:
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 32
        31: .line 173
            new java.security.InvalidKeyException
            dup
            ldc "Extra parameter data"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        32: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getOctetString:()[B
            putfield com.sun.crypto.provider.DHPrivateKey.key:[B
        33: .line 180
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.parseKeyBits:()V
        34: .line 182
            aload 0 /* this */
            aload 1 /* encodedKey */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
        end local 8 // sun.security.util.DerValue params
        end local 7 // sun.security.util.ObjectIdentifier oid
        end local 6 // sun.security.util.DerInputStream derInStream
        end local 5 // sun.security.util.DerValue algid
        end local 4 // java.math.BigInteger parsedVersion
        end local 3 // sun.security.util.DerValue val
        35: .line 183
            goto 38
      StackMap locals: com.sun.crypto.provider.DHPrivateKey byte[] java.io.InputStream
      StackMap stack: java.lang.Exception
        36: astore 3 /* e */
        start local 3 // java.lang.Exception e
        37: .line 184
            new java.security.InvalidKeyException
            dup
            ldc "Error parsing key encoding"
            aload 3 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.Exception e
        38: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.io.InputStream inStream
        end local 1 // byte[] encodedKey
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   39     0           this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   39     1     encodedKey  [B
            2   39     2       inStream  Ljava/io/InputStream;
            3   35     3            val  Lsun/security/util/DerValue;
            6   35     4  parsedVersion  Ljava/math/BigInteger;
           12   35     5          algid  Lsun/security/util/DerValue;
           15   35     6    derInStream  Lsun/security/util/DerInputStream;
           16   35     7            oid  Lsun/security/util/ObjectIdentifier;
           21   35     8         params  Lsun/security/util/DerValue;
           37   38     3              e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           2    35      36  Class java.io.IOException
           2    35      36  Class java.lang.NumberFormatException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
            Name  Flags
      encodedKey  

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 192
            ldc "PKCS#8"
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DHPrivateKey;

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 199
            ldc "DH"
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DHPrivateKey;

  public synchronized byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 206
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
            ifnonnull 22
         1: .line 208
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 1 /* tmp */
        start local 1 // sun.security.util.DerOutputStream tmp
         2: .line 213
            aload 1 /* tmp */
            getstatic com.sun.crypto.provider.DHPrivateKey.PKCS8_VERSION:Ljava/math/BigInteger;
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
         3: .line 218
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 2 /* algid */
        start local 2 // sun.security.util.DerOutputStream algid
         4: .line 221
            aload 2 /* algid */
            getstatic com.sun.crypto.provider.DHPublicKey.DH_OID:Lsun/security/util/ObjectIdentifier;
            invokevirtual sun.security.util.DerOutputStream.putOID:(Lsun/security/util/ObjectIdentifier;)V
         5: .line 223
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 3 /* params */
        start local 3 // sun.security.util.DerOutputStream params
         6: .line 224
            aload 3 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
         7: .line 225
            aload 3 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
         8: .line 226
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 10
         9: .line 227
            aload 3 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
        10: .line 230
      StackMap locals: sun.security.util.DerOutputStream sun.security.util.DerOutputStream sun.security.util.DerOutputStream
      StackMap stack:
            new sun.security.util.DerValue
            dup
            bipush 48
        11: .line 231
            aload 3 /* params */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
        12: .line 230
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
            astore 4 /* paramSequence */
        start local 4 // sun.security.util.DerValue paramSequence
        13: .line 233
            aload 2 /* algid */
            aload 4 /* paramSequence */
            invokevirtual sun.security.util.DerOutputStream.putDerValue:(Lsun/security/util/DerValue;)V
        14: .line 235
            aload 1 /* tmp */
            bipush 48
            aload 2 /* algid */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        15: .line 238
            aload 1 /* tmp */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.key:[B
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
        16: .line 241
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 5 /* derKey */
        start local 5 // sun.security.util.DerOutputStream derKey
        17: .line 242
            aload 5 /* derKey */
            bipush 48
            aload 1 /* tmp */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        18: .line 243
            aload 0 /* this */
            aload 5 /* derKey */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
            putfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
        end local 5 // sun.security.util.DerOutputStream derKey
        end local 4 // sun.security.util.DerValue paramSequence
        end local 3 // sun.security.util.DerOutputStream params
        end local 2 // sun.security.util.DerOutputStream algid
        end local 1 // sun.security.util.DerOutputStream tmp
        19: .line 244
            goto 22
      StackMap locals: com.sun.crypto.provider.DHPrivateKey
      StackMap stack: java.io.IOException
        20: pop
        21: .line 245
            aconst_null
            areturn
        22: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lcom/sun/crypto/provider/DHPrivateKey;
            2   19     1            tmp  Lsun/security/util/DerOutputStream;
            4   19     2          algid  Lsun/security/util/DerOutputStream;
            6   19     3         params  Lsun/security/util/DerOutputStream;
           13   19     4  paramSequence  Lsun/security/util/DerValue;
           17   19     5         derKey  Lsun/security/util/DerOutputStream;
      Exception table:
        from    to  target  type
           1    19      20  Class java.io.IOException

  public java.math.BigInteger getX();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 257
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DHPrivateKey;

  public javax.crypto.spec.DHParameterSpec getParams();
    descriptor: ()Ljavax/crypto/spec/DHParameterSpec;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 266
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 2
         1: .line 267
            new javax.crypto.spec.DHParameterSpec
            dup
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            invokespecial javax.crypto.spec.DHParameterSpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;I)V
            areturn
         2: .line 269
      StackMap locals:
      StackMap stack:
            new javax.crypto.spec.DHParameterSpec
            dup
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
            invokespecial javax.crypto.spec.DHParameterSpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/crypto/provider/DHPrivateKey;

  private void parseKeyBits();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 275
            new sun.security.util.DerInputStream
            dup
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.key:[B
            invokespecial sun.security.util.DerInputStream.<init>:([B)V
            astore 1 /* in */
        start local 1 // sun.security.util.DerInputStream in
         1: .line 276
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual sun.security.util.DerInputStream.getBigInteger:()Ljava/math/BigInteger;
            putfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
        end local 1 // sun.security.util.DerInputStream in
         2: .line 277
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 278
            new java.security.InvalidKeyException
            dup
         5: .line 279
            new java.lang.StringBuilder
            dup
            ldc "Error parsing key encoding: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 278
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 2 /* ike */
        start local 2 // java.security.InvalidKeyException ike
         7: .line 280
            aload 2 /* ike */
            aload 1 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         8: .line 281
            aload 2 /* ike */
            athrow
        end local 2 // java.security.InvalidKeyException ike
        end local 1 // java.io.IOException e
         9: .line 283
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/crypto/provider/DHPrivateKey;
            1    2     1    in  Lsun/security/util/DerInputStream;
            4    9     1     e  Ljava/io/IOException;
            7    9     2   ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 290
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
            aastore
            invokestatic java.util.Objects.hash:([Ljava/lang/Object;)I
            ireturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DHPrivateKey;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
        start local 1 // java.lang.Object obj
         0: .line 294
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 296
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.interfaces.DHPrivateKey
            ifne 3
         2: .line 297
            iconst_0
            ireturn
         3: .line 300
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.interfaces.DHPrivateKey
         4: .line 299
            astore 2 /* other */
        start local 2 // javax.crypto.interfaces.DHPrivateKey other
         5: .line 301
            aload 2 /* other */
            invokeinterface javax.crypto.interfaces.DHPrivateKey.getParams:()Ljavax/crypto/spec/DHParameterSpec;
            astore 3 /* otherParams */
        start local 3 // javax.crypto.spec.DHParameterSpec otherParams
         6: .line 302
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
            aload 2 /* other */
            invokeinterface javax.crypto.interfaces.DHPrivateKey.getX:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifne 10
         7: .line 303
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
            aload 3 /* otherParams */
            invokevirtual javax.crypto.spec.DHParameterSpec.getP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifne 10
         8: .line 304
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
            aload 3 /* otherParams */
            invokevirtual javax.crypto.spec.DHParameterSpec.getG:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifne 10
         9: .line 302
            iconst_1
            ireturn
      StackMap locals: javax.crypto.interfaces.DHPrivateKey javax.crypto.spec.DHParameterSpec
      StackMap stack:
        10: iconst_0
            ireturn
        end local 3 // javax.crypto.spec.DHParameterSpec otherParams
        end local 2 // javax.crypto.interfaces.DHPrivateKey other
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   11     1          obj  Ljava/lang/Object;
            5   11     2        other  Ljavax/crypto/interfaces/DHPrivateKey;
            6   11     3  otherParams  Ljavax/crypto/spec/DHParameterSpec;
    MethodParameters:
      Name  Flags
      obj   

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 317
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.PRIVATE:Ljava/security/KeyRep$Type;
         1: .line 318
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getAlgorithm:()Ljava/lang/String;
         2: .line 319
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getFormat:()Ljava/lang/String;
         3: .line 320
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
         4: .line 317
            invokespecial java.security.KeyRep.<init>:(Ljava/security/KeyRep$Type;Ljava/lang/String;Ljava/lang/String;[B)V
            areturn
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/crypto/provider/DHPrivateKey;
    Exceptions:
      throws java.io.ObjectStreamException
}
SourceFile: "DHPrivateKey.java"
InnerClasses:
  public final Type = java.security.KeyRep$Type of java.security.KeyRep