Returns a certificate without the signedCertificate part set.
Supported Platforms : Windows Mobile and BlackBerry.
getPublicCertificate( label )
Name | Type | Description |
label | String | label of the desired certificate |
certificate object
// The following script gets the certificate data for the first // certificate to match the provided subject and issuer var certStore = CertificateStore.getDefault(); var labels = certStore.certificateLabels("MyUser", "mydomain.com"); var cert = certStore.getPublicCertificate(labels[0]);