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 53
            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 73
            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 103
            aload 0 /* this */
            aload 1 /* x */
            putfield com.sun.crypto.provider.DHPrivateKey.x:Ljava/math/BigInteger;
         3: .line 104
            aload 0 /* this */
            aload 2 /* p */
            putfield com.sun.crypto.provider.DHPrivateKey.p:Ljava/math/BigInteger;
         4: .line 105
            aload 0 /* this */
            aload 3 /* g */
            putfield com.sun.crypto.provider.DHPrivateKey.g:Ljava/math/BigInteger;
         5: .line 106
            aload 0 /* this */
            iload 4 /* l */
            putfield com.sun.crypto.provider.DHPrivateKey.l:I
         6: .line 108
            aload 0 /* this */
            new sun.security.util.DerValue
            dup
            iconst_2
         7: .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
         8: .line 108
            putfield com.sun.crypto.provider.DHPrivateKey.key:[B
         9: .line 110
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
            putfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
        10: .line 111
            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 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
        13: .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   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 124
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            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 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
         3: .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
         4: .line 128
            aload 3 /* val */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 6
         5: .line 129
            new java.security.InvalidKeyException
            dup
            ldc "Key not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         6: .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
         7: .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 12
         8: .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
         9: .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;
        10: .line 139
            aload 4 /* parsedVersion */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 137
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .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
        13: .line 146
            aload 5 /* algid */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 15
        14: .line 147
            new java.security.InvalidKeyException
            dup
            ldc "AlgId is not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        15: .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
        16: .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
        17: .line 151
            aload 7 /* oid */
            ifnonnull 19
        18: .line 152
            new java.security.InvalidKeyException
            dup
            ldc "Null OID"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        19: .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 21
        20: .line 155
            new java.security.InvalidKeyException
            dup
            ldc "Parameters missing"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        21: .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
        22: .line 159
            aload 8 /* params */
            getfield sun.security.util.DerValue.tag:B
            iconst_5
            if_icmpne 24
        23: .line 160
            new java.security.InvalidKeyException
            dup
            ldc "Null parameters"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 162
      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 163
            new java.security.InvalidKeyException
            dup
            ldc "Parameters not a SEQUENCE"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        26: .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
        27: .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;
        28: .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;
        29: .line 169
            aload 8 /* params */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 31
        30: .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
        31: .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 33
        32: .line 173
            new java.security.InvalidKeyException
            dup
            ldc "Extra parameter data"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        33: .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
        34: .line 180
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.parseKeyBits:()V
        35: .line 184
            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 186
            goto 49
      StackMap locals: com.sun.crypto.provider.DHPrivateKey byte[] java.io.InputStream
      StackMap stack: java.lang.NumberFormatException
        37: astore 3 /* e */
        start local 3 // java.lang.NumberFormatException e
        38: .line 187
            new java.security.InvalidKeyException
            dup
        39: .line 188
            ldc "Private-value length too big"
        40: .line 187
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 4 /* ike */
        start local 4 // java.security.InvalidKeyException ike
        41: .line 189
            aload 4 /* ike */
            aload 3 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        42: .line 190
            aload 4 /* ike */
            athrow
        end local 4 // java.security.InvalidKeyException ike
        end local 3 // java.lang.NumberFormatException e
        43: .line 191
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
        44: .line 192
            new java.security.InvalidKeyException
            dup
        45: .line 193
            new java.lang.StringBuilder
            dup
            ldc "Error parsing key encoding: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* 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;
        46: .line 192
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 4 /* ike */
        start local 4 // java.security.InvalidKeyException ike
        47: .line 194
            aload 4 /* ike */
            aload 3 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        48: .line 195
            aload 4 /* ike */
            athrow
        end local 4 // java.security.InvalidKeyException ike
        end local 3 // java.io.IOException e
        49: .line 197
      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   50     0           this  Lcom/sun/crypto/provider/DHPrivateKey;
            0   50     1     encodedKey  [B
            3   50     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   43     3              e  Ljava/lang/NumberFormatException;
           41   43     4            ike  Ljava/security/InvalidKeyException;
           44   49     3              e  Ljava/io/IOException;
           47   49     4            ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           3    36      37  Class java.lang.NumberFormatException
           3    36      43  Class java.io.IOException
    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 203
            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 210
            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 217
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.encodedKey:[B
            ifnonnull 22
         1: .line 219
            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 224
            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 229
            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 232
            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 234
            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 235
            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 236
            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 237
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 10
         9: .line 238
            aload 3 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
        10: .line 240
      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 241
            aload 3 /* params */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
        12: .line 240
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
            astore 4 /* paramSequence */
        start local 4 // sun.security.util.DerValue paramSequence
        13: .line 243
            aload 2 /* algid */
            aload 4 /* paramSequence */
            invokevirtual sun.security.util.DerOutputStream.putDerValue:(Lsun/security/util/DerValue;)V
        14: .line 245
            aload 1 /* tmp */
            bipush 48
            aload 2 /* algid */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        15: .line 248
            aload 1 /* tmp */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.key:[B
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
        16: .line 251
            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 252
            aload 5 /* derKey */
            bipush 48
            aload 1 /* tmp */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
        18: .line 253
            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 254
            goto 22
      StackMap locals: com.sun.crypto.provider.DHPrivateKey
      StackMap stack: java.io.IOException
        20: pop
        21: .line 255
            aconst_null
            areturn
        22: .line 258
      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 267
            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 276
            aload 0 /* this */
            getfield com.sun.crypto.provider.DHPrivateKey.l:I
            ifeq 2
         1: .line 277
            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 279
      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 284
            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 285
            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 286
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 287
            new java.security.InvalidKeyException
            dup
         5: .line 288
            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 287
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 2 /* ike */
        start local 2 // java.security.InvalidKeyException ike
         7: .line 289
            aload 2 /* ike */
            aload 1 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         8: .line 290
            aload 2 /* ike */
            athrow
        end local 2 // java.security.InvalidKeyException ike
        end local 1 // java.io.IOException e
         9: .line 292
      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=3, locals=4, args_size=1
        start local 0 // com.sun.crypto.provider.DHPrivateKey this
         0: .line 299
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 300
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
            astore 2 /* enc */
        start local 2 // byte[] enc
         2: .line 302
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 303
      StackMap locals: int byte[] int
      StackMap stack:
            iload 1 /* retval */
            aload 2 /* enc */
            iload 3 /* i */
            baload
            iload 3 /* i */
            imul
            iadd
            istore 1 /* retval */
         5: .line 302
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* enc */
            arraylength
            if_icmplt 4
        end local 3 // int i
         7: .line 305
            iload 1 /* retval */
            ireturn
        end local 2 // byte[] enc
        end local 1 // int retval
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/crypto/provider/DHPrivateKey;
            1    8     1  retval  I
            2    8     2     enc  [B
            3    7     3       i  I

  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 309
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 310
            iconst_1
            ireturn
         2: .line 312
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof java.security.PrivateKey
            ifne 4
         3: .line 313
            iconst_0
            ireturn
         4: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
            astore 2 /* thisEncoded */
        start local 2 // byte[] thisEncoded
         5: .line 316
            aload 1 /* obj */
            checkcast java.security.PrivateKey
            invokeinterface java.security.PrivateKey.getEncoded:()[B
            astore 3 /* thatEncoded */
        start local 3 // byte[] thatEncoded
         6: .line 318
            aload 2 /* thisEncoded */
            aload 3 /* thatEncoded */
            invokestatic java.util.Arrays.equals:([B[B)Z
            ireturn
        end local 3 // byte[] thatEncoded
        end local 2 // byte[] thisEncoded
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.crypto.provider.DHPrivateKey this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lcom/sun/crypto/provider/DHPrivateKey;
            0    7     1          obj  Ljava/lang/Object;
            5    7     2  thisEncoded  [B
            6    7     3  thatEncoded  [B
    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 330
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.PRIVATE:Ljava/security/KeyRep$Type;
         1: .line 331
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getAlgorithm:()Ljava/lang/String;
         2: .line 332
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getFormat:()Ljava/lang/String;
         3: .line 333
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DHPrivateKey.getEncoded:()[B
         4: .line 330
            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