summaryrefslogtreecommitdiff
path: root/security/nss/lib/libpkix/include/pkix_certsel.h
diff options
context:
space:
mode:
Diffstat (limited to 'security/nss/lib/libpkix/include/pkix_certsel.h')
-rwxr-xr-xsecurity/nss/lib/libpkix/include/pkix_certsel.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/security/nss/lib/libpkix/include/pkix_certsel.h b/security/nss/lib/libpkix/include/pkix_certsel.h
index 8d424619c..6d7553666 100755
--- a/security/nss/lib/libpkix/include/pkix_certsel.h
+++ b/security/nss/lib/libpkix/include/pkix_certsel.h
@@ -118,10 +118,9 @@ extern "C" {
* DESCRIPTION:
*
* This callback function determines whether the specified Cert pointed to by
- * "cert" matches the criteria of the CertSelector pointed to by "selector",
- * and stores the result at "pResult". If the Cert matches the CertSelector's
- * criteria, a value of PKIX_TRUE will be stored at "pResult"; otherwise a
- * value of PKIX_FALSE will be stored.
+ * "cert" matches the criteria of the CertSelector pointed to by "selector".
+ * If the Cert does not matches the CertSelector's criteria, an exception will
+ * be thrown.
*
* PARAMETERS:
* "selector"
@@ -130,8 +129,6 @@ extern "C" {
* "cert"
* Address of Cert that is to be matched using "selector".
* Must be non-NULL.
- * "pResult"
- * Address where Boolean value will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
@@ -148,7 +145,6 @@ typedef PKIX_Error *
(*PKIX_CertSelector_MatchCallback)(
PKIX_CertSelector *selector,
PKIX_PL_Cert *cert,
- PKIX_Boolean *pResult,
void *plContext);
/*