Closed
Bug 277968
Opened 20 years ago
Closed 10 months ago
Implement OCSP request signing
Categories
(NSS :: Libraries, enhancement)
Tracking
(Not tracked)
RESOLVED
INACTIVE
People
(Reporter: wtc, Unassigned)
Details
Attachments
(2 files)
|
7.08 KB,
patch
|
Details | Diff | Splinter Review | |
|
587 bytes,
patch
|
Details | Diff | Splinter Review |
The CERT_CreateOCSPRequest function takes a
signerCert argument, but callers must pass
a null signerCert now because request signing
is not yet implemented. The code has a comment
explaining how signing of request should be
implemented:
we will need to allocate a signature
structure for the request, fill in the
"derCerts" field in it, save the signerCert
there, as well as fill in the "requestorName"
field of the tbsRequest.
Updated•20 years ago
|
QA Contact: bishakhabanerjee → jason.m.reid
Updated•19 years ago
|
QA Contact: jason.m.reid → libraries
Comment 1•14 years ago
|
||
We have implemented the OCSP request signing in NSS 3.12.8. Does anyone still need this? I can submit a patch (~30-40 lines of code were added) which will need a review.
Comment 2•14 years ago
|
||
Attachment #508099 -
Flags: review?(wtc)
Comment 3•14 years ago
|
||
Attachment #508100 -
Flags: review?(wtc)
| Reporter | ||
Comment 4•14 years ago
|
||
Comment on attachment 508099 [details] [diff] [review] OCSP request signing Thank you for the patch. The new function needs to be added to lib/nss/nss.def so that it is exported from the DLL/shared library. There are some extraneous whitespace changes in this patch (near line 2070 and line 2891), some "if" statement formatting inconsistencies (the placement of the opening curly braces '{'), and PR_NOT_IMPLEMENTED_ERROR should be removed instead of being commented out. Please provide sample code (such as cmd/ocspclnt) to show how to use the new function. Note: I know web browsers don't need OCSP request signing, but as a general-purpose PKI library, NSS should probably support OCSP request signing. Bob, Nelson, what do you think?
Comment 5•2 years ago
|
||
The bug assignee didn't login in Bugzilla in the last 7 months, so the assignee is being reset.
Assignee: wtc → nobody
Updated•2 years ago
|
Severity: normal → S3
Updated•10 months ago
|
Status: NEW → RESOLVED
Closed: 10 months ago
Resolution: --- → INACTIVE
You need to log in
before you can comment on or make changes to this bug.
Description
•