KeyChainManager.GetPrivateKey(String, KeyChainManagerKeyPairScope) 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.
Returns the private key for the given alias and scope.
[Android.Runtime.Register("getPrivateKey", "(Ljava/lang/String;I)Ljava/security/PrivateKey;", "", ApiSince=37)]
public Java.Security.IPrivateKey? GetPrivateKey(string alias, Android.Security.KeyChainManagerKeyPairScope scope);
[<Android.Runtime.Register("getPrivateKey", "(Ljava/lang/String;I)Ljava/security/PrivateKey;", "", ApiSince=37)>]
member this.GetPrivateKey : string * Android.Security.KeyChainManagerKeyPairScope -> Java.Security.IPrivateKey
Parameters
- alias
- String
The alias of the desired key pair.
The scope to search (#KEYPAIR_SCOPE_USER or
#KEYPAIR_SCOPE_DEVICE).
Returns
The PrivateKey, or null if no key exists for the given alias/scope
or if access to the key is not granted.
- Attributes