public final class sun.security.ssl.KeyManagerFactoryImpl$X509 extends sun.security.ssl.KeyManagerFactoryImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.KeyManagerFactoryImpl$X509
  super_class: sun.security.ssl.KeyManagerFactoryImpl
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
         0: .line 84
            aload 0 /* this */
            invokespecial sun.security.ssl.KeyManagerFactoryImpl.<init>:()V
            return
        end local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/KeyManagerFactoryImpl$X509;

  protected void engineInit(java.security.KeyStore, char[]);
    descriptor: (Ljava/security/KeyStore;[C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
        start local 1 // java.security.KeyStore ks
        start local 2 // char[] password
         0: .line 90
            aload 1 /* ks */
            ifnonnull 5
         1: .line 91
            aload 0 /* this */
            new sun.security.ssl.X509KeyManagerImpl
            dup
         2: .line 92
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            invokespecial sun.security.ssl.X509KeyManagerImpl.<init>:(Ljava/util/List;)V
         3: .line 91
            putfield sun.security.ssl.KeyManagerFactoryImpl$X509.keyManager:Ljavax/net/ssl/X509ExtendedKeyManager;
         4: .line 93
            goto 19
         5: .line 94
      StackMap locals:
      StackMap stack:
            invokestatic sun.security.ssl.SunJSSE.isFIPS:()Z
            ifeq 12
         6: .line 95
            aload 1 /* ks */
            invokevirtual java.security.KeyStore.getProvider:()Ljava/security/Provider;
            getstatic sun.security.ssl.SunJSSE.cryptoProvider:Ljava/security/Provider;
            if_acmpeq 12
         7: .line 96
            new java.security.KeyStoreException
            dup
         8: .line 97
            new java.lang.StringBuilder
            dup
            ldc "FIPS mode: KeyStore must be from provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         9: .line 98
            getstatic sun.security.ssl.SunJSSE.cryptoProvider:Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        10: .line 97
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 96
            invokespecial java.security.KeyStoreException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* ks */
        13: .line 102
            new java.security.KeyStore$PasswordProtection
            dup
            aload 2 /* password */
            invokespecial java.security.KeyStore$PasswordProtection.<init>:([C)V
        14: .line 101
            invokestatic java.security.KeyStore$Builder.newInstance:(Ljava/security/KeyStore;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Builder;
            astore 3 /* builder */
        start local 3 // java.security.KeyStore$Builder builder
        15: .line 103
            aload 0 /* this */
            new sun.security.ssl.X509KeyManagerImpl
            dup
            aload 3 /* builder */
            invokespecial sun.security.ssl.X509KeyManagerImpl.<init>:(Ljava/security/KeyStore$Builder;)V
            putfield sun.security.ssl.KeyManagerFactoryImpl$X509.keyManager:Ljavax/net/ssl/X509ExtendedKeyManager;
        end local 3 // java.security.KeyStore$Builder builder
        16: .line 104
            goto 19
      StackMap locals:
      StackMap stack: java.lang.RuntimeException
        17: astore 3 /* e */
        start local 3 // java.lang.RuntimeException e
        18: .line 105
            new java.security.KeyStoreException
            dup
            ldc "initialization failed"
            aload 3 /* e */
            invokespecial java.security.KeyStoreException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.RuntimeException e
        19: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.KeyManagerFactoryImpl$X509.isInitialized:Z
        20: .line 109
            return
        end local 2 // char[] password
        end local 1 // java.security.KeyStore ks
        end local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lsun/security/ssl/KeyManagerFactoryImpl$X509;
            0   21     1        ks  Ljava/security/KeyStore;
            0   21     2  password  [C
           15   16     3   builder  Ljava/security/KeyStore$Builder;
           18   19     3         e  Ljava/lang/RuntimeException;
      Exception table:
        from    to  target  type
          12    16      17  Class java.lang.RuntimeException
    Exceptions:
      throws java.security.KeyStoreException, java.security.NoSuchAlgorithmException, java.security.UnrecoverableKeyException
    MethodParameters:
          Name  Flags
      ks        
      password  

  protected void engineInit(javax.net.ssl.ManagerFactoryParameters);
    descriptor: (Ljavax/net/ssl/ManagerFactoryParameters;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
        start local 1 // javax.net.ssl.ManagerFactoryParameters params
         0: .line 114
            aload 1 /* params */
            instanceof javax.net.ssl.KeyStoreBuilderParameters
            ifne 4
         1: .line 115
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 116
            ldc "Parameters must be instance of KeyStoreBuilderParameters"
         3: .line 115
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 118
      StackMap locals:
      StackMap stack:
            invokestatic sun.security.ssl.SunJSSE.isFIPS:()Z
            ifeq 8
         5: .line 119
            new java.security.InvalidAlgorithmParameterException
            dup
         6: .line 120
            ldc "FIPS mode: KeyStoreBuilderParameters not supported"
         7: .line 119
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 123
      StackMap locals:
      StackMap stack:
            aload 1 /* params */
            checkcast javax.net.ssl.KeyStoreBuilderParameters
            invokevirtual javax.net.ssl.KeyStoreBuilderParameters.getParameters:()Ljava/util/List;
         9: .line 122
            astore 2 /* builders */
        start local 2 // java.util.List builders
        10: .line 124
            aload 0 /* this */
            new sun.security.ssl.X509KeyManagerImpl
            dup
            aload 2 /* builders */
            invokespecial sun.security.ssl.X509KeyManagerImpl.<init>:(Ljava/util/List;)V
            putfield sun.security.ssl.KeyManagerFactoryImpl$X509.keyManager:Ljavax/net/ssl/X509ExtendedKeyManager;
        11: .line 125
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.KeyManagerFactoryImpl$X509.isInitialized:Z
        12: .line 126
            return
        end local 2 // java.util.List builders
        end local 1 // javax.net.ssl.ManagerFactoryParameters params
        end local 0 // sun.security.ssl.KeyManagerFactoryImpl$X509 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lsun/security/ssl/KeyManagerFactoryImpl$X509;
            0   13     1    params  Ljavax/net/ssl/ManagerFactoryParameters;
           10   13     2  builders  Ljava/util/List<Ljava/security/KeyStore$Builder;>;
    Exceptions:
      throws java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      params  
}
SourceFile: "KeyManagerFactoryImpl.java"
NestHost: sun.security.ssl.KeyManagerFactoryImpl
InnerClasses:
  public abstract Builder = java.security.KeyStore$Builder of java.security.KeyStore
  public PasswordProtection = java.security.KeyStore$PasswordProtection of java.security.KeyStore
  public abstract ProtectionParameter = java.security.KeyStore$ProtectionParameter of java.security.KeyStore
  public final X509 = sun.security.ssl.KeyManagerFactoryImpl$X509 of sun.security.ssl.KeyManagerFactoryImpl