aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-01-08 01:21:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-01-08 01:21:55 +0000
commit0b33bc65cd1bde346eae5b25d6f2d693c115b901 (patch)
tree2864dc1fce704a66c19f8c0cf6db8b1768b8a1c8 /CHANGES
parent0f5fa24a7c0ced77eabb2d2c2f749c928a62be57 (diff)
downloadopenssl-0b33bc65cd1bde346eae5b25d6f2d693c115b901.tar.gz
Add set of OCSP client functions. All experimental
and subject to addition, modifcation or deletion. Add two OCSP nonce utility functions. Fix typo in status code name.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES24
1 files changed, 23 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index f43b723c8e..0c745b64a7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,7 +3,29 @@
Changes between 0.9.6 and 0.9.7 [xx XXX 2000]
- *) Change function OCSP_request_add() to OCSP_request_add0().
+ *) Move OCSP client related routines to ocsp_cl.c. These
+ provide utility functions which an application needing
+ to issue a request to an OCSP responder and analyse the
+ response will typically need: as opposed to those which an
+ OCSP responder itself would need which will be added later.
+
+ OCSP_request_sign() signs an OCSP request with an API similar
+ to PKCS7_sign(). OCSP_response_status() returns status of OCSP
+ response. OCSP_response_get1_basic() extracts basic response
+ from response. OCSP_resp_find_status(): finds and extracts status
+ information from an OCSP_CERTID structure (which will be created
+ when the request structure is built). These are built from lower
+ level functions which work on OCSP_SINGLERESP structures but
+ wont normally be used unless the application wishes to examine
+ extensions in the OCSP response for example.
+
+ Replace nonce routines with a pair of functions.
+ OCSP_request_add1_nonce() adds a nonce value and optionally
+ generates a random value. OCSP_check_nonce() checks the
+ validity of the nonce in an OCSP response.
+ [Steve Henson]
+
+ *) Change function OCSP_request_add() to OCSP_request_add0_id().
This doesn't copy the supplied OCSP_CERTID and avoids the
need to free up the newly created id. Change return type
to OCSP_ONEREQ to return the internal OCSP_ONEREQ structure.