This function saves login credentials from a certificate to the credential cache. The common name is used for the username and the signed certificate is used for the password.
<static> saveLoginCertificate( certificate )
| Name | Type | Description |
| certificate | hwc.Certificate | The values certificate.subjectCN and certificate.signedCertificate must be defined. |
var certInfo = {};
certInfo.subjectCN = "sampleCommonName";
certInfo.signedCertificate = "samplePassword";
hwc.saveLoginCertificate( certInfo );