public final class sun.security.ec.ECPrivateKeyImpl extends sun.security.pkcs.PKCS8Key implements java.security.interfaces.ECPrivateKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.security.ec.ECPrivateKeyImpl
  super_class: sun.security.pkcs.PKCS8Key
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 88695385615075129

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

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

  private java.security.spec.ECParameterSpec params;
    descriptor: Ljava/security/spec/ECParameterSpec;
    flags: (0x0002) ACC_PRIVATE

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
        start local 1 // byte[] encoded
         0: .line 73
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 74
            aload 0 /* this */
            aload 1 /* encoded */
            invokevirtual sun.security.ec.ECPrivateKeyImpl.decode:([B)V
         2: .line 75
            return
        end local 1 // byte[] encoded
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lsun/security/ec/ECPrivateKeyImpl;
            0    3     1  encoded  [B
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encoded  

  void <init>(java.math.BigInteger, java.security.spec.ECParameterSpec);
    descriptor: (Ljava/math/BigInteger;Ljava/security/spec/ECParameterSpec;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
        start local 1 // java.math.BigInteger s
        start local 2 // java.security.spec.ECParameterSpec params
         0: .line 81
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 83
            aload 0 /* this */
            aload 1 /* s */
            putfield sun.security.ec.ECPrivateKeyImpl.s:Ljava/math/BigInteger;
         2: .line 84
            aload 0 /* this */
            aload 2 /* params */
            putfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
         3: .line 85
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual sun.security.ec.ECPrivateKeyImpl.makeEncoding:(Ljava/math/BigInteger;)V
         4: .line 87
            return
        end local 2 // java.security.spec.ECParameterSpec params
        end local 1 // java.math.BigInteger s
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lsun/security/ec/ECPrivateKeyImpl;
            0    5     1       s  Ljava/math/BigInteger;
            0    5     2  params  Ljava/security/spec/ECParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      s       
      params  

  void <init>(byte[], java.security.spec.ECParameterSpec);
    descriptor: ([BLjava/security/spec/ECParameterSpec;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
        start local 1 // byte[] s
        start local 2 // java.security.spec.ECParameterSpec params
         0: .line 89
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 91
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
         2: .line 92
            aload 0 /* this */
            aload 2 /* params */
            putfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
         3: .line 93
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual sun.security.ec.ECPrivateKeyImpl.makeEncoding:([B)V
         4: .line 94
            return
        end local 2 // java.security.spec.ECParameterSpec params
        end local 1 // byte[] s
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lsun/security/ec/ECPrivateKeyImpl;
            0    5     1       s  [B
            0    5     2  params  Ljava/security/spec/ECParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      s       
      params  

  private void makeEncoding(byte[]);
    descriptor: ([B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
        start local 1 // byte[] s
         0: .line 97
            aload 0 /* this */
            new sun.security.x509.AlgorithmId
            dup
         1: .line 98
            getstatic sun.security.x509.AlgorithmId.EC_oid:Lsun/security/util/ObjectIdentifier;
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
            invokestatic sun.security.util.ECParameters.getAlgorithmParameters:(Ljava/security/spec/ECParameterSpec;)Ljava/security/AlgorithmParameters;
            invokespecial sun.security.x509.AlgorithmId.<init>:(Lsun/security/util/ObjectIdentifier;Ljava/security/AlgorithmParameters;)V
         2: .line 97
            putfield sun.security.ec.ECPrivateKeyImpl.algid:Lsun/security/x509/AlgorithmId;
         3: .line 100
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 2 /* out */
        start local 2 // sun.security.util.DerOutputStream out
         4: .line 101
            aload 2 /* out */
            iconst_1
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
         5: .line 102
            aload 1 /* s */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            astore 3 /* privBytes */
        start local 3 // byte[] privBytes
         6: .line 103
            aload 3 /* privBytes */
            invokestatic sun.security.util.ArrayUtil.reverse:([B)V
         7: .line 104
            aload 2 /* out */
            aload 3 /* privBytes */
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
         8: .line 106
            new sun.security.util.DerValue
            dup
            bipush 48
            aload 2 /* out */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
         9: .line 105
            astore 4 /* val */
        start local 4 // sun.security.util.DerValue val
        10: .line 107
            aload 0 /* this */
            aload 4 /* val */
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
            putfield sun.security.ec.ECPrivateKeyImpl.key:[B
        end local 4 // sun.security.util.DerValue val
        end local 3 // byte[] privBytes
        end local 2 // sun.security.util.DerOutputStream out
        11: .line 108
            goto 14
      StackMap locals:
      StackMap stack: java.io.IOException
        12: astore 2 /* exc */
        start local 2 // java.io.IOException exc
        13: .line 110
            new java.security.InvalidKeyException
            dup
            aload 2 /* exc */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException exc
        14: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] s
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lsun/security/ec/ECPrivateKeyImpl;
            0   15     1          s  [B
            4   11     2        out  Lsun/security/util/DerOutputStream;
            6   11     3  privBytes  [B
           10   11     4        val  Lsun/security/util/DerValue;
           13   14     2        exc  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3    11      12  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      s     

  private void makeEncoding(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=2
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
        start local 1 // java.math.BigInteger s
         0: .line 115
            aload 0 /* this */
            new sun.security.x509.AlgorithmId
            dup
         1: .line 116
            getstatic sun.security.x509.AlgorithmId.EC_oid:Lsun/security/util/ObjectIdentifier;
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
            invokestatic sun.security.util.ECParameters.getAlgorithmParameters:(Ljava/security/spec/ECParameterSpec;)Ljava/security/AlgorithmParameters;
            invokespecial sun.security.x509.AlgorithmId.<init>:(Lsun/security/util/ObjectIdentifier;Ljava/security/AlgorithmParameters;)V
         2: .line 115
            putfield sun.security.ec.ECPrivateKeyImpl.algid:Lsun/security/x509/AlgorithmId;
         3: .line 118
            aload 1 /* s */
            invokevirtual java.math.BigInteger.toByteArray:()[B
            astore 2 /* sArr */
        start local 2 // byte[] sArr
         4: .line 120
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
            invokevirtual java.security.spec.ECParameterSpec.getOrder:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            bipush 7
            iadd
            bipush 8
            idiv
            istore 3 /* numOctets */
        start local 3 // int numOctets
         5: .line 121
            iload 3 /* numOctets */
            newarray 8
            astore 4 /* sOctets */
        start local 4 // byte[] sOctets
         6: .line 122
            aload 2 /* sArr */
            arraylength
            aload 4 /* sOctets */
            arraylength
            isub
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            istore 5 /* inPos */
        start local 5 // int inPos
         7: .line 123
            aload 4 /* sOctets */
            arraylength
            aload 2 /* sArr */
            arraylength
            isub
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            istore 6 /* outPos */
        start local 6 // int outPos
         8: .line 124
            aload 2 /* sArr */
            arraylength
            aload 4 /* sOctets */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* length */
        start local 7 // int length
         9: .line 125
            aload 2 /* sArr */
            iload 5 /* inPos */
            aload 4 /* sOctets */
            iload 6 /* outPos */
            iload 7 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 127
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 8 /* out */
        start local 8 // sun.security.util.DerOutputStream out
        11: .line 128
            aload 8 /* out */
            iconst_1
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
        12: .line 129
            aload 8 /* out */
            aload 4 /* sOctets */
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
        13: .line 131
            new sun.security.util.DerValue
            dup
            bipush 48
            aload 8 /* out */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
        14: .line 130
            astore 9 /* val */
        start local 9 // sun.security.util.DerValue val
        15: .line 132
            aload 0 /* this */
            aload 9 /* val */
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
            putfield sun.security.ec.ECPrivateKeyImpl.key:[B
        end local 9 // sun.security.util.DerValue val
        end local 8 // sun.security.util.DerOutputStream out
        end local 7 // int length
        end local 6 // int outPos
        end local 5 // int inPos
        end local 4 // byte[] sOctets
        end local 3 // int numOctets
        end local 2 // byte[] sArr
        16: .line 133
            goto 19
      StackMap locals:
      StackMap stack: java.io.IOException
        17: astore 2 /* exc */
        start local 2 // java.io.IOException exc
        18: .line 135
            new java.security.InvalidKeyException
            dup
            aload 2 /* exc */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException exc
        19: .line 137
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.math.BigInteger s
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lsun/security/ec/ECPrivateKeyImpl;
            0   20     1          s  Ljava/math/BigInteger;
            4   16     2       sArr  [B
            5   16     3  numOctets  I
            6   16     4    sOctets  [B
            7   16     5      inPos  I
            8   16     6     outPos  I
            9   16     7     length  I
           11   16     8        out  Lsun/security/util/DerOutputStream;
           15   16     9        val  Lsun/security/util/DerValue;
           18   19     2        exc  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3    16      17  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      s     

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
         0: .line 141
            ldc "EC"
            areturn
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ec/ECPrivateKeyImpl;

  public java.math.BigInteger getS();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
         0: .line 146
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.s:Ljava/math/BigInteger;
            ifnonnull 4
         1: .line 147
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* arrCopy */
        start local 1 // byte[] arrCopy
         2: .line 148
            aload 1 /* arrCopy */
            invokestatic sun.security.util.ArrayUtil.reverse:([B)V
         3: .line 149
            aload 0 /* this */
            new java.math.BigInteger
            dup
            iconst_1
            aload 1 /* arrCopy */
            invokespecial java.math.BigInteger.<init>:(I[B)V
            putfield sun.security.ec.ECPrivateKeyImpl.s:Ljava/math/BigInteger;
        end local 1 // byte[] arrCopy
         4: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.s:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lsun/security/ec/ECPrivateKeyImpl;
            2    4     1  arrCopy  [B

  public byte[] getArrayS();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
         0: .line 155
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
            ifnonnull 7
         1: .line 156
            aload 0 /* this */
            invokevirtual sun.security.ec.ECPrivateKeyImpl.getS:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            astore 1 /* arr */
        start local 1 // byte[] arr
         2: .line 157
            aload 1 /* arr */
            invokestatic sun.security.util.ArrayUtil.reverse:([B)V
         3: .line 158
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
            invokevirtual java.security.spec.ECParameterSpec.getOrder:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            bipush 7
            iadd
            bipush 8
            idiv
            istore 2 /* byteLength */
        start local 2 // int byteLength
         4: .line 159
            aload 0 /* this */
            iload 2 /* byteLength */
            newarray 8
            putfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
         5: .line 160
            iload 2 /* byteLength */
            aload 1 /* arr */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* length */
        start local 3 // int length
         6: .line 161
            aload 1 /* arr */
            iconst_0
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
            iconst_0
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 3 // int length
        end local 2 // int byteLength
        end local 1 // byte[] arr
         7: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lsun/security/ec/ECPrivateKeyImpl;
            2    7     1         arr  [B
            4    7     2  byteLength  I
            6    7     3      length  I

  public java.security.spec.ECParameterSpec getParams();
    descriptor: ()Ljava/security/spec/ECParameterSpec;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
         0: .line 168
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
            areturn
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ec/ECPrivateKeyImpl;

  protected void parseKeyBits();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // sun.security.ec.ECPrivateKeyImpl this
         0: .line 176
            new sun.security.util.DerInputStream
            dup
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.key:[B
            invokespecial sun.security.util.DerInputStream.<init>:([B)V
            astore 1 /* in */
        start local 1 // sun.security.util.DerInputStream in
         1: .line 177
            aload 1 /* in */
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 2 /* derValue */
        start local 2 // sun.security.util.DerValue derValue
         2: .line 178
            aload 2 /* derValue */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 4
         3: .line 179
            new java.io.IOException
            dup
            ldc "Not a SEQUENCE"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 181
      StackMap locals: sun.security.util.DerInputStream sun.security.util.DerValue
      StackMap stack:
            aload 2 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            astore 3 /* data */
        start local 3 // sun.security.util.DerInputStream data
         5: .line 182
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getInteger:()I
            istore 4 /* version */
        start local 4 // int version
         6: .line 183
            iload 4 /* version */
            iconst_1
            if_icmpeq 8
         7: .line 184
            new java.io.IOException
            dup
            ldc "Version must be 1"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 186
      StackMap locals: sun.security.util.DerInputStream int
      StackMap stack:
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getOctetString:()[B
            astore 5 /* privData */
        start local 5 // byte[] privData
         9: .line 187
            aload 5 /* privData */
            invokestatic sun.security.util.ArrayUtil.reverse:([B)V
        10: .line 188
            aload 0 /* this */
            aload 5 /* privData */
            putfield sun.security.ec.ECPrivateKeyImpl.arrayS:[B
        11: .line 189
            goto 16
        12: .line 190
      StackMap locals: byte[]
      StackMap stack:
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 6 /* value */
        start local 6 // sun.security.util.DerValue value
        13: .line 191
            aload 6 /* value */
            iconst_0
            invokevirtual sun.security.util.DerValue.isContextSpecific:(B)Z
            ifne 16
        14: .line 193
            aload 6 /* value */
            iconst_1
            invokevirtual sun.security.util.DerValue.isContextSpecific:(B)Z
            ifne 16
        15: .line 196
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unexpected value: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* value */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // sun.security.util.DerValue value
        16: .line 189
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifne 12
        17: .line 199
            aload 0 /* this */
            getfield sun.security.ec.ECPrivateKeyImpl.algid:Lsun/security/x509/AlgorithmId;
            invokevirtual sun.security.x509.AlgorithmId.getParameters:()Ljava/security/AlgorithmParameters;
            astore 6 /* algParams */
        start local 6 // java.security.AlgorithmParameters algParams
        18: .line 200
            aload 6 /* algParams */
            ifnonnull 20
        19: .line 201
            new java.security.InvalidKeyException
            dup
            ldc "EC domain parameters must be encoded in the algorithm identifier"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 204
      StackMap locals: java.security.AlgorithmParameters
      StackMap stack:
            aload 0 /* this */
            aload 6 /* algParams */
            ldc Ljava/security/spec/ECParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            checkcast java.security.spec.ECParameterSpec
            putfield sun.security.ec.ECPrivateKeyImpl.params:Ljava/security/spec/ECParameterSpec;
        end local 6 // java.security.AlgorithmParameters algParams
        end local 5 // byte[] privData
        end local 4 // int version
        end local 3 // sun.security.util.DerInputStream data
        end local 2 // sun.security.util.DerValue derValue
        end local 1 // sun.security.util.DerInputStream in
        21: .line 205
            goto 26
      StackMap locals: sun.security.ec.ECPrivateKeyImpl
      StackMap stack: java.io.IOException
        22: astore 1 /* e */
        start local 1 // java.io.IOException e
        23: .line 206
            new java.security.InvalidKeyException
            dup
            ldc "Invalid EC private key"
            aload 1 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        24: .line 207
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
            astore 1 /* e */
        start local 1 // java.security.spec.InvalidParameterSpecException e
        25: .line 208
            new java.security.InvalidKeyException
            dup
            ldc "Invalid EC private key"
            aload 1 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.security.spec.InvalidParameterSpecException e
        26: .line 210
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.ec.ECPrivateKeyImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   27     0       this  Lsun/security/ec/ECPrivateKeyImpl;
            1   21     1         in  Lsun/security/util/DerInputStream;
            2   21     2   derValue  Lsun/security/util/DerValue;
            5   21     3       data  Lsun/security/util/DerInputStream;
            6   21     4    version  I
            9   21     5   privData  [B
           13   16     6      value  Lsun/security/util/DerValue;
           18   21     6  algParams  Ljava/security/AlgorithmParameters;
           23   24     1          e  Ljava/io/IOException;
           25   26     1          e  Ljava/security/spec/InvalidParameterSpecException;
      Exception table:
        from    to  target  type
           0    21      22  Class java.io.IOException
           0    21      24  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException
}
SourceFile: "ECPrivateKeyImpl.java"