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

  private int[] DH_data;
    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 54
            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 88
            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 89
            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 103
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            bipush 7
            newarray 10
            dup
            iconst_0
            iconst_1
            iastore
            dup
            iconst_1
            iconst_2
            iastore
            dup
            iconst_2
            sipush 840
            iastore
            dup
            iconst_3
            ldc 113549
            iastore
            dup
            iconst_4
            iconst_1
            iastore
            dup
            iconst_5
            iconst_3
            iastore
            dup
            bipush 6
            iconst_1
            iastore
            putfield com.sun.crypto.provider.DHPrivateKey.DH_data:[I
         2: .line 104
            aload 0 /* this */
            aload 1 /* x */
            putfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
         3: .line 105
            aload 0 /* this */
            aload 2 /* p */
            putfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
         4: .line 106
            aload 0 /* this */
            aload 3 /* g */
            putfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
         5: .line 107
            aload 0 /* this */
            iload 4 /* l */
            putfield com.sun.crypto.provider.DHPrivateKey.l:I
         6: .line 109
            aload 0 /* this */
            new sun.security.util.DerValue
            dup
            iconst_2
         7: .line 110
            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
         8: .line 109
            putfield com.sun.crypto.provider.DHPrivateKey.key:[B
         9: .line 111
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
            putfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
        10: .line 112
            goto 13
      StackMap locals: com.sun.crypto.provider.DHPrivateKey java.math.BigInteger java.math.BigInteger java.math.BigInteger int
      StackMap stack: java.io.IOException
        11: astore 5 /* e */
        start local 5 // java.io.IOException e
        12: .line 113
            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
        13: .line 115
      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   14     0  this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   14     1     x  Ljava/math/BigInteger;
            0   14     2     p  Ljava/math/BigInteger;
            0   14     3     g  Ljava/math/BigInteger;
            0   14     4     l  I
           12   13     5     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           6    10      11  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 125
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            bipush 7
            newarray 10
            dup
            iconst_0
            iconst_1
            iastore
            dup
            iconst_1
            iconst_2
            iastore
            dup
            iconst_2
            sipush 840
            iastore
            dup
            iconst_3
            ldc 113549
            iastore
            dup
            iconst_4
            iconst_1
            iastore
            dup
            iconst_5
            iconst_3
            iastore
            dup
            bipush 6
            iconst_1
            iastore
            putfield com.sun.crypto.provider.DHPrivateKey.DH_data:[I
         2: .line 126
            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
         3: .line 128
            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
         4: .line 129
            aload 3 /* val */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 6
         5: .line 130
            new java.security.InvalidKeyException
            dup
            ldc "Key not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 136
      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
         7: .line 137
            aload 4 /* parsedVersion */
            getstatic com.sun.crypto.provider.DHPrivateKey.PKCS8_VERSION:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifne 12
         8: .line 138
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "version mismatch: (supported: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         9: .line 139
            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;
        10: .line 140
            aload 4 /* parsedVersion */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 138
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 146
      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
        13: .line 147
            aload 5 /* algid */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 15
        14: .line 148
            new java.security.InvalidKeyException
            dup
            ldc "AlgId is not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 150
      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
        16: .line 151
            aload 6 /* derInStream */
            invokevirtual sun.security.util.DerInputStream.getOID:()Lsun/security/util/ObjectIdentifier;
            astore 7 /* oid */
        start local 7 // sun.security.util.ObjectIdentifier oid
        17: .line 152
            aload 7 /* oid */
            ifnonnull 19
        18: .line 153
            new java.security.InvalidKeyException
            dup
            ldc "Null OID"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 155
      StackMap locals: sun.security.util.DerInputStream sun.security.util.ObjectIdentifier
      StackMap stack:
            aload 6 /* derInStream */
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifne 21
        20: .line 156
            new java.security.InvalidKeyException
            dup
            ldc "Parameters missing"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 159
      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
        22: .line 160
            aload 8 /* params */
            getfield sun.security.util.DerValue.tag:B
            iconst_5
            if_icmpne 24
        23: .line 161
            new java.security.InvalidKeyException
            dup
            ldc "Null parameters"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 163
      StackMap locals: sun.security.util.DerValue
      StackMap stack:
            aload 8 /* params */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 26
        25: .line 164
            new java.security.InvalidKeyException
            dup
            ldc "Parameters not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 166
      StackMap locals:
      StackMap stack:
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.reset:()V
        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.p:Ljava/math/BigInteger;
        28: .line 168
            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;
        29: .line 170
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 31
        30: .line 171
            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
        31: .line 173
      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 33
        32: .line 174
            new java.security.InvalidKeyException
            dup
            ldc "Extra parameter data"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        33: .line 180
      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
        34: .line 181
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.parseKeyBits:()V
        35: .line 183
            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
        36: .line 184
            goto 39
      StackMap locals: com.sun.crypto.provider.DHPrivateKey byte[] java.io.InputStream
      StackMap stack: java.lang.Exception
        37: astore 3 /* e */
        start local 3 // java.lang.Exception e
        38: .line 185
            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
        39: .line 187
      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   40     0           this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   40     1     encodedKey  [B
            3   40     2       inStream  Ljava/io/InputStream;
            4   36     3            val  Lsun/security/util/DerValue;
            7   36     4  parsedVersion  Ljava/math/BigInteger;
           13   36     5          algid  Lsun/security/util/DerValue;
           16   36     6    derInStream  Lsun/security/util/DerInputStream;
           17   36     7            oid  Lsun/security/util/ObjectIdentifier;
           22   36     8         params  Lsun/security/util/DerValue;
           38   39     3              e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           3    36      37  Class java.io.IOException
           3    36      37  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 193
            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 200
            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 207
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
            ifnonnull 22
         1: .line 209
            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 214
            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 219
            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 222
            aload 2 /* algid */
            new sun.security.util.ObjectIdentifier
            dup
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.DH_data:[I
            invokespecial sun.security.util.ObjectIdentifier.<init>:([I)V
            invokevirtual sun.security.util.DerOutputStream.putOID:(Lsun/security/util/ObjectIdentifier;)V
         5: .line 224
            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 225
            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 226
            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 227
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 10
         9: .line 228
            aload 3 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
        10: .line 231
      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 232
            aload 3 /* params */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
        12: .line 231
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
            astore 4 /* paramSequence */
        start local 4 // sun.security.util.DerValue paramSequence
        13: .line 234
            aload 2 /* algid */
            aload 4 /* paramSequence */
            invokevirtual sun.security.util.DerOutputStream.putDerValue:(Lsun/security/util/DerValue;)V
        14: .line 236
            aload 1 /* tmp */
            bipush 48
            aload 2 /* algid */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        15: .line 239
            aload 1 /* tmp */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.key:[B
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
        16: .line 242
            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 243
            aload 5 /* derKey */
            bipush 48
            aload 1 /* tmp */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        18: .line 244
            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 245
            goto 22
      StackMap locals: com.sun.crypto.provider.DHPrivateKey
      StackMap stack: java.io.IOException
        20: pop
        21: .line 246
            aconst_null
            areturn
        22: .line 249
      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 258
            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 267
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 2
         1: .line 268
            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 270
      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 276
            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 277
            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 278
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 279
            new java.security.InvalidKeyException
            dup
         5: .line 280
            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 279
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 2 /* ike */
        start local 2 // java.security.InvalidKeyException ike
         7: .line 281
            aload 2 /* ike */
            aload 1 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         8: .line 282
            aload 2 /* ike */
            athrow
        end local 2 // java.security.InvalidKeyException ike
        end local 1 // java.io.IOException e
         9: .line 284
      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 291
            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 295
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 297
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.interfaces.DHPrivateKey
            ifne 3
         2: .line 298
            iconst_0
            ireturn
         3: .line 301
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.interfaces.DHPrivateKey
         4: .line 300
            astore 2 /* other */
        start local 2 // javax.crypto.interfaces.DHPrivateKey other
         5: .line 302
            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 303
            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 304
            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 305
            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 303
            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