KeyStoreSpi.EngineGetCertificate(String) 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 certificate associated with the given alias.
[Android.Runtime.Register("engineGetCertificate", "(Ljava/lang/String;)Ljava/security/cert/Certificate;", "GetEngineGetCertificate_Ljava_lang_String_Handler")]
public abstract Java.Security.Cert.Certificate? EngineGetCertificate (string? alias);
[<Android.Runtime.Register("engineGetCertificate", "(Ljava/lang/String;)Ljava/security/cert/Certificate;", "GetEngineGetCertificate_Ljava_lang_String_Handler")>]
abstract member EngineGetCertificate : string -> Java.Security.Cert.Certificate
Parameters
- alias
- String
the alias name
Returns
the certificate, or null if the given alias does not exist or does not contain a certificate.
- Attributes
Remarks
Returns the certificate associated with the given alias.
If the given alias name identifies an entry created by a call to setCertificateEntry
, or created by a call to setEntry
with a TrustedCertificateEntry
, then the trusted certificate contained in that entry is returned.
If the given alias name identifies an entry created by a call to setKeyEntry
, or created by a call to setEntry
with a PrivateKeyEntry
, then the first element of the certificate chain in that entry (if a chain exists) is returned.
Java documentation for java.security.KeyStoreSpi.engineGetCertificate(java.lang.String)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.