final class sun.security.pkcs11.P11Key$P11ECPrivateKey extends sun.security.pkcs11.P11Key implements java.security.interfaces.ECPrivateKey
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.pkcs11.P11Key$P11ECPrivateKey
  super_class: sun.security.pkcs11.P11Key
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7786054399510515515

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

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

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

  void <init>(sun.security.pkcs11.Session, long, java.lang.String, int, sun.security.pkcs11.wrapper.CK_ATTRIBUTE[]);
    descriptor: (Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V
    flags: (0x0000) 
    Code:
      stack=8, locals=7, args_size=6
        start local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
        start local 1 // sun.security.pkcs11.Session session
        start local 2 // long keyID
        start local 4 // java.lang.String algorithm
        start local 5 // int keyLength
        start local 6 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         0: .line 1008
            aload 0 /* this */
            ldc "private"
            aload 1 /* session */
            lload 2 /* keyID */
            aload 4 /* algorithm */
            iload 5 /* keyLength */
            aload 6 /* attributes */
            invokespecial sun.security.pkcs11.P11Key.<init>:(Ljava/lang/String;Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V
         1: .line 1009
            return
        end local 6 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        end local 5 // int keyLength
        end local 4 // java.lang.String algorithm
        end local 2 // long keyID
        end local 1 // sun.security.pkcs11.Session session
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;
            0    2     1     session  Lsun/security/pkcs11/Session;
            0    2     2       keyID  J
            0    2     4   algorithm  Ljava/lang/String;
            0    2     5   keyLength  I
            0    2     6  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
    MethodParameters:
            Name  Flags
      session     
      keyID       
      algorithm   
      keyLength   
      attributes  

  private synchronized void fetchValues();
    descriptor: ()V
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
         0: .line 1011
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 1012
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.s:Ljava/math/BigInteger;
            ifnull 3
         2: .line 1013
            return
         3: .line 1015
      StackMap locals:
      StackMap stack:
            iconst_2
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
         4: .line 1016
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 17
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(J)V
            aastore
            dup
            iconst_1
         5: .line 1017
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 384
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.params:Ljava/security/spec/ECParameterSpec;
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JLjava/lang/Object;)V
            aastore
         6: .line 1015
            astore 1 /* attributes */
        start local 1 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 1019
            aload 0 /* this */
            aload 1 /* attributes */
            invokevirtual sun.security.pkcs11.P11Key$P11ECPrivateKey.fetchAttributes:([Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)V
         8: .line 1020
            aload 0 /* this */
            aload 1 /* attributes */
            iconst_0
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.pkcs11.P11Key$P11ECPrivateKey.s:Ljava/math/BigInteger;
         9: .line 1022
            aload 0 /* this */
        10: .line 1023
            aload 1 /* attributes */
            iconst_1
            aaload
            invokevirtual sun.security.pkcs11.wrapper.CK_ATTRIBUTE.getByteArray:()[B
        11: .line 1022
            invokestatic sun.security.pkcs11.P11ECKeyFactory.decodeParameters:([B)Ljava/security/spec/ECParameterSpec;
            putfield sun.security.pkcs11.P11Key$P11ECPrivateKey.params:Ljava/security/spec/ECParameterSpec;
        12: .line 1024
            goto 15
      StackMap locals: sun.security.pkcs11.P11Key$P11ECPrivateKey sun.security.pkcs11.wrapper.CK_ATTRIBUTE[]
      StackMap stack: java.lang.Exception
        13: astore 2 /* e */
        start local 2 // java.lang.Exception e
        14: .line 1025
            new java.lang.RuntimeException
            dup
            ldc "Could not parse key values"
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.Exception e
        15: .line 1027
      StackMap locals:
      StackMap stack:
            return
        end local 1 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;
            7   16     1  attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           14   15     2           e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           9    12      13  Class java.lang.Exception

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
         0: .line 1029
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 1030
            ldc "PKCS#8"
            areturn
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;

  synchronized byte[] getEncodedInternal();
    descriptor: ()[B
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
         0: .line 1033
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 1034
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.encoded:[B
            ifnonnull 8
         2: .line 1035
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Key$P11ECPrivateKey.fetchValues:()V
         3: .line 1037
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.s:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.params:Ljava/security/spec/ECParameterSpec;
            invokestatic sun.security.util.ECUtil.generateECPrivateKey:(Ljava/math/BigInteger;Ljava/security/spec/ECParameterSpec;)Ljava/security/interfaces/ECPrivateKey;
            astore 1 /* key */
        start local 1 // java.security.Key key
         4: .line 1038
            aload 0 /* this */
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            putfield sun.security.pkcs11.P11Key$P11ECPrivateKey.encoded:[B
        end local 1 // java.security.Key key
         5: .line 1039
            goto 8
      StackMap locals:
      StackMap stack: java.security.spec.InvalidKeySpecException
         6: astore 1 /* e */
        start local 1 // java.security.spec.InvalidKeySpecException e
         7: .line 1040
            new java.security.ProviderException
            dup
            aload 1 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.security.spec.InvalidKeySpecException e
         8: .line 1043
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.encoded:[B
            areturn
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;
            4    5     1   key  Ljava/security/Key;
            7    8     1     e  Ljava/security/spec/InvalidKeySpecException;
      Exception table:
        from    to  target  type
           3     5       6  Class java.security.spec.InvalidKeySpecException

  public java.math.BigInteger getS();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
         0: .line 1046
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Key$P11ECPrivateKey.fetchValues:()V
         1: .line 1047
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.s:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;

  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.pkcs11.P11Key$P11ECPrivateKey this
         0: .line 1050
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Key$P11ECPrivateKey.fetchValues:()V
         1: .line 1051
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Key$P11ECPrivateKey.params:Ljava/security/spec/ECParameterSpec;
            areturn
        end local 0 // sun.security.pkcs11.P11Key$P11ECPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/pkcs11/P11Key$P11ECPrivateKey;
}
SourceFile: "P11Key.java"
NestHost: sun.security.pkcs11.P11Key
InnerClasses:
  private final P11ECPrivateKey = sun.security.pkcs11.P11Key$P11ECPrivateKey of sun.security.pkcs11.P11Key