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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.provider.DSAPrivateKey this
         0: .line 68
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 69
            return
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/provider/DSAPrivateKey;

  public void <init>(java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=5
        start local 0 // sun.security.provider.DSAPrivateKey this
        start local 1 // java.math.BigInteger x
        start local 2 // java.math.BigInteger p
        start local 3 // java.math.BigInteger q
        start local 4 // java.math.BigInteger g
         0: .line 74
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 77
            aload 0 /* this */
            aload 1 /* x */
            putfield sun.security.provider.DSAPrivateKey.x:Ljava/math/BigInteger;
         2: .line 78
            aload 0 /* this */
            new sun.security.x509.AlgIdDSA
            dup
            aload 2 /* p */
            aload 3 /* q */
            aload 4 /* g */
            invokespecial sun.security.x509.AlgIdDSA.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            putfield sun.security.provider.DSAPrivateKey.algid:Lsun/security/x509/AlgorithmId;
         3: .line 81
            aload 0 /* this */
            new sun.security.util.DerValue
            dup
            iconst_2
         4: .line 82
            aload 1 /* x */
            invokevirtual java.math.BigInteger.toByteArray:()[B
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
         5: .line 81
            putfield sun.security.provider.DSAPrivateKey.key:[B
         6: .line 83
            aload 0 /* this */
            invokevirtual sun.security.provider.DSAPrivateKey.encode:()[B
            pop
         7: .line 84
            goto 14
      StackMap locals: sun.security.provider.DSAPrivateKey java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger
      StackMap stack: java.io.IOException
         8: astore 5 /* e */
        start local 5 // java.io.IOException e
         9: .line 85
            new java.security.InvalidKeyException
            dup
        10: .line 86
            new java.lang.StringBuilder
            dup
            ldc "could not DER encode x: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* 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;
        11: .line 85
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 6 /* ike */
        start local 6 // java.security.InvalidKeyException ike
        12: .line 87
            aload 6 /* ike */
            aload 5 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        13: .line 88
            aload 6 /* ike */
            athrow
        end local 6 // java.security.InvalidKeyException ike
        end local 5 // java.io.IOException e
        14: .line 90
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.math.BigInteger g
        end local 3 // java.math.BigInteger q
        end local 2 // java.math.BigInteger p
        end local 1 // java.math.BigInteger x
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lsun/security/provider/DSAPrivateKey;
            0   15     1     x  Ljava/math/BigInteger;
            0   15     2     p  Ljava/math/BigInteger;
            0   15     3     q  Ljava/math/BigInteger;
            0   15     4     g  Ljava/math/BigInteger;
            9   14     5     e  Ljava/io/IOException;
           12   14     6   ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           3     7       8  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      x     
      p     
      q     
      g     

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.provider.DSAPrivateKey this
        start local 1 // byte[] encoded
         0: .line 95
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 96
            aload 0 /* this */
            invokevirtual sun.security.provider.DSAPrivateKey.clearOldKey:()V
         2: .line 97
            aload 0 /* this */
            aload 1 /* encoded */
            invokevirtual sun.security.provider.DSAPrivateKey.decode:([B)V
         3: .line 98
            return
        end local 1 // byte[] encoded
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lsun/security/provider/DSAPrivateKey;
            0    4     1  encoded  [B
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encoded  

  public java.security.interfaces.DSAParams getParams();
    descriptor: ()Ljava/security/interfaces/DSAParams;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.security.provider.DSAPrivateKey this
         0: .line 106
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.algid:Lsun/security/x509/AlgorithmId;
            instanceof java.security.interfaces.DSAParams
            ifeq 3
         1: .line 107
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.algid:Lsun/security/x509/AlgorithmId;
            checkcast java.security.interfaces.DSAParams
         2: areturn
         3: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.algid:Lsun/security/x509/AlgorithmId;
            invokevirtual sun.security.x509.AlgorithmId.getParameters:()Ljava/security/AlgorithmParameters;
            astore 2 /* algParams */
        start local 2 // java.security.AlgorithmParameters algParams
         4: .line 111
            aload 2 /* algParams */
            ifnonnull 6
         5: .line 112
            aconst_null
            areturn
         6: .line 114
      StackMap locals: sun.security.provider.DSAPrivateKey top java.security.AlgorithmParameters
      StackMap stack:
            aload 2 /* algParams */
            ldc Ljava/security/spec/DSAParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            checkcast java.security.spec.DSAParameterSpec
            astore 1 /* paramSpec */
        start local 1 // java.security.spec.DSAParameterSpec paramSpec
         7: .line 115
            aload 1 /* paramSpec */
         8: areturn
        end local 2 // java.security.AlgorithmParameters algParams
        end local 1 // java.security.spec.DSAParameterSpec paramSpec
         9: .line 117
      StackMap locals: sun.security.provider.DSAPrivateKey
      StackMap stack: java.security.spec.InvalidParameterSpecException
            pop
        10: .line 118
            aconst_null
            areturn
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lsun/security/provider/DSAPrivateKey;
            7    9     1  paramSpec  Ljava/security/spec/DSAParameterSpec;
            4    9     2  algParams  Ljava/security/AlgorithmParameters;
      Exception table:
        from    to  target  type
           0     2       9  Class java.security.spec.InvalidParameterSpecException
           3     5       9  Class java.security.spec.InvalidParameterSpecException
           6     8       9  Class java.security.spec.InvalidParameterSpecException

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

  private void clearOldKey();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.security.provider.DSAPrivateKey this
         0: .line 133
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.encodedKey:[B
            ifnull 6
         1: .line 134
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 5
         3: .line 135
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.encodedKey:[B
            iload 1 /* i */
            iconst_0
            bastore
         4: .line 134
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.encodedKey:[B
            arraylength
            if_icmplt 3
        end local 1 // int i
         6: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.key:[B
            ifnull 12
         7: .line 139
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         8: goto 11
         9: .line 140
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.key:[B
            iload 1 /* i */
            iconst_0
            bastore
        10: .line 139
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 1 /* i */
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.key:[B
            arraylength
            if_icmplt 9
        end local 1 // int i
        12: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lsun/security/provider/DSAPrivateKey;
            2    6     1     i  I
            8   12     1     i  I

  protected void parseKeyBits();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // sun.security.provider.DSAPrivateKey this
         0: .line 147
            new sun.security.util.DerInputStream
            dup
            aload 0 /* this */
            getfield sun.security.provider.DSAPrivateKey.key:[B
            invokespecial sun.security.util.DerInputStream.<init>:([B)V
            astore 1 /* in */
        start local 1 // sun.security.util.DerInputStream in
         1: .line 148
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual sun.security.util.DerInputStream.getBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.provider.DSAPrivateKey.x:Ljava/math/BigInteger;
        end local 1 // sun.security.util.DerInputStream in
         2: .line 149
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 150
            new java.security.InvalidKeyException
            dup
            aload 1 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            astore 2 /* ike */
        start local 2 // java.security.InvalidKeyException ike
         5: .line 151
            aload 2 /* ike */
            aload 1 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         6: .line 152
            aload 2 /* ike */
            athrow
        end local 2 // java.security.InvalidKeyException ike
        end local 1 // java.io.IOException e
         7: .line 154
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.provider.DSAPrivateKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/security/provider/DSAPrivateKey;
            1    2     1    in  Lsun/security/util/DerInputStream;
            4    7     1     e  Ljava/io/IOException;
            5    7     2   ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
}
SourceFile: "DSAPrivateKey.java"