AndroidMessageHandler.ConfigureKeyManagerFactory(KeyStore) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Create and configure an instance of KeyManagerFactory. The keyStore parameter is set to the
return value of the ConfigureKeyStore(KeyStore) method, so it might be null if the application overrode the method and provided
no key store. It will not be null when the default implementation is used. The application can return null here since
KeyManagerFactory is not required for the custom SSL configuration, but it might be used by the application to implement a more advanced
mechanism of key management.
protected virtual Javax.Net.Ssl.KeyManagerFactory? ConfigureKeyManagerFactory(Java.Security.KeyStore? keyStore);
abstract member ConfigureKeyManagerFactory : Java.Security.KeyStore -> Javax.Net.Ssl.KeyManagerFactory
override this.ConfigureKeyManagerFactory : Java.Security.KeyStore -> Javax.Net.Ssl.KeyManagerFactory
Parameters
- keyStore
- KeyStore
Key store.
Returns
The key manager factory or null.