final class sun.security.ssl.JsseJce
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.JsseJce
  super_class: java.lang.Object
{
  static final boolean ALLOW_ECC;
    descriptor: Z
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final java.lang.String CIPHER_RSA_PKCS1;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "RSA/ECB/PKCS1Padding"

  static final java.lang.String CIPHER_RC4;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "RC4"

  static final java.lang.String CIPHER_DES;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "DES/CBC/NoPadding"

  static final java.lang.String CIPHER_3DES;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "DESede/CBC/NoPadding"

  static final java.lang.String CIPHER_AES;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "AES/CBC/NoPadding"

  static final java.lang.String CIPHER_AES_GCM;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "AES/GCM/NoPadding"

  static final java.lang.String CIPHER_CHACHA20_POLY1305;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "ChaCha20-Poly1305"

  static final java.lang.String SIGNATURE_DSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "DSA"

  static final java.lang.String SIGNATURE_ECDSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "SHA1withECDSA"

  static final java.lang.String SIGNATURE_RAWDSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "RawDSA"

  static final java.lang.String SIGNATURE_RAWECDSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "NONEwithECDSA"

  static final java.lang.String SIGNATURE_RAWRSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "NONEwithRSA"

  static final java.lang.String SIGNATURE_SSLRSA;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "MD5andSHA1withRSA"

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 42
            ldc "com.sun.net.ssl.enableECC"
            iconst_1
            invokestatic sun.security.ssl.Utilities.getBooleanProperty:(Ljava/lang/String;Z)Z
         1: .line 41
            putstatic sun.security.ssl.JsseJce.ALLOW_ECC:Z
         2: .line 119
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.JsseJce this
         0: .line 121
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 123
            return
        end local 0 // sun.security.ssl.JsseJce this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/JsseJce;

  static boolean isEcAvailable();
    descriptor: ()Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 126
            getstatic sun.security.ssl.JsseJce$EcAvailability.isAvailable:Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static int getRSAKeyLength(java.security.PublicKey);
    descriptor: (Ljava/security/PublicKey;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.security.PublicKey key
         0: .line 131
            aload 0 /* key */
            instanceof java.security.interfaces.RSAPublicKey
            ifeq 3
         1: .line 132
            aload 0 /* key */
            checkcast java.security.interfaces.RSAPublicKey
            invokeinterface java.security.interfaces.RSAPublicKey.getModulus:()Ljava/math/BigInteger;
            astore 1 /* modulus */
        start local 1 // java.math.BigInteger modulus
         2: .line 133
            goto 5
        end local 1 // java.math.BigInteger modulus
         3: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* key */
            invokestatic sun.security.ssl.JsseJce.getRSAPublicKeySpec:(Ljava/security/PublicKey;)Ljava/security/spec/RSAPublicKeySpec;
            astore 2 /* spec */
        start local 2 // java.security.spec.RSAPublicKeySpec spec
         4: .line 135
            aload 2 /* spec */
            invokevirtual java.security.spec.RSAPublicKeySpec.getModulus:()Ljava/math/BigInteger;
            astore 1 /* modulus */
        end local 2 // java.security.spec.RSAPublicKeySpec spec
        start local 1 // java.math.BigInteger modulus
         5: .line 137
      StackMap locals: java.math.BigInteger
      StackMap stack:
            aload 1 /* modulus */
            invokevirtual java.math.BigInteger.bitLength:()I
            ireturn
        end local 1 // java.math.BigInteger modulus
        end local 0 // java.security.PublicKey key
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0      key  Ljava/security/PublicKey;
            2    3     1  modulus  Ljava/math/BigInteger;
            5    6     1  modulus  Ljava/math/BigInteger;
            4    5     2     spec  Ljava/security/spec/RSAPublicKeySpec;
    MethodParameters:
      Name  Flags
      key   

  static java.security.spec.RSAPublicKeySpec getRSAPublicKeySpec(java.security.PublicKey);
    descriptor: (Ljava/security/PublicKey;)Ljava/security/spec/RSAPublicKeySpec;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.security.PublicKey key
         0: .line 141
            aload 0 /* key */
            instanceof java.security.interfaces.RSAPublicKey
            ifeq 5
         1: .line 142
            aload 0 /* key */
            checkcast java.security.interfaces.RSAPublicKey
            astore 1 /* rsaKey */
        start local 1 // java.security.interfaces.RSAPublicKey rsaKey
         2: .line 143
            new java.security.spec.RSAPublicKeySpec
            dup
            aload 1 /* rsaKey */
            invokeinterface java.security.interfaces.RSAPublicKey.getModulus:()Ljava/math/BigInteger;
         3: .line 144
            aload 1 /* rsaKey */
            invokeinterface java.security.interfaces.RSAPublicKey.getPublicExponent:()Ljava/math/BigInteger;
         4: .line 143
            invokespecial java.security.spec.RSAPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
        end local 1 // java.security.interfaces.RSAPublicKey rsaKey
         5: .line 147
      StackMap locals:
      StackMap stack:
            ldc "RSA"
            invokestatic java.security.KeyFactory.getInstance:(Ljava/lang/String;)Ljava/security/KeyFactory;
            astore 1 /* factory */
        start local 1 // java.security.KeyFactory factory
         6: .line 148
            aload 1 /* factory */
            aload 0 /* key */
            ldc Ljava/security/spec/RSAPublicKeySpec;
            invokevirtual java.security.KeyFactory.getKeySpec:(Ljava/security/Key;Ljava/lang/Class;)Ljava/security/spec/KeySpec;
            checkcast java.security.spec.RSAPublicKeySpec
         7: areturn
        end local 1 // java.security.KeyFactory factory
         8: .line 149
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         9: .line 150
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // java.security.PublicKey key
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0      key  Ljava/security/PublicKey;
            2    5     1   rsaKey  Ljava/security/interfaces/RSAPublicKey;
            6    8     1  factory  Ljava/security/KeyFactory;
            9   10     1        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           5     7       8  Class java.lang.Exception
    MethodParameters:
      Name  Flags
      key   
}
SourceFile: "JsseJce.java"
NestMembers:
  sun.security.ssl.JsseJce$EcAvailability
InnerClasses:
  private EcAvailability = sun.security.ssl.JsseJce$EcAvailability of sun.security.ssl.JsseJce