diff options
Diffstat (limited to 'security/manager/ssl/nsICertStorage.idl')
-rw-r--r-- | security/manager/ssl/nsICertStorage.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/manager/ssl/nsICertStorage.idl b/security/manager/ssl/nsICertStorage.idl index 91008e3cf0..35e14af10b 100644 --- a/security/manager/ssl/nsICertStorage.idl +++ b/security/manager/ssl/nsICertStorage.idl @@ -174,7 +174,7 @@ interface nsICertStorage : nsISupports { * - STATE_NO_FILTER if there is no (usable) CRLite filter. * No lookup is performed in the STATE_NOT_ENROLLED and STATE_NOT_COVERED cases. */ - [must_use] + [must_use, noscript] short getCRLiteRevocationState(in Array<octet> issuer, in Array<octet> issuerSPKI, in Array<octet> serialNumber, @@ -203,8 +203,8 @@ interface nsICertStorage : nsISupports { * this issuer SPKI and serial number is revoked according to the current set of stashed CRLite * revocation information. */ - [must_use] - bool isCertRevokedByStash(in Array<octet> issuerSPKI, in Array<octet> serialNumber); + [must_use, noscript] + boolean isCertRevokedByStash(in Array<octet> issuerSPKI, in Array<octet> serialNumber); /** * Trust flags to use when adding a adding a certificate. |