summaryrefslogtreecommitdiffstats
path: root/crypto/ocsp/ocsp.h
AgeCommit message (Collapse)Author
2007-10-12Backport certificate status request TLS extension support to 0.9.8.Dr. Stephen Henson
2007-09-06gcc 4.2 fixes to avoid use or function pointer casts in OpenSSL.Dr. Stephen Henson
Fix various "computed value not used" warnings too.
2005-05-12Some C compilers produce warnings or compilation errors if an attemptDr. Stephen Henson
is made to directly cast a function of one type to what it considers and incompatible type. In particular gcc 3.4.2. Add new openssl_fcast macro to place functions into a form where the compiler will allow them to be cast. The current version achives this by casting to: void function(void).
2005-05-11Fix more error codes.Bodo Möller
(Also improve util/ck_errf.pl script, and occasionally fix source code formatting.)
2005-03-31Consistency.Ben Laurie
2005-03-31Give everything prototypes (well, everything that's actually used).Ben Laurie
2001-12-17remove redundant ERR_load_... declarationsBodo Möller
2001-11-15make updateRichard Levitte
perl util/mkerr.pl -recurse -write -rebuild
2001-02-26Enhance OCSP_request_verify() so it finds the signers certificateDr. Stephen Henson
properly and supports several flags.
2001-02-24New function and options to check OCSP response validity.Dr. Stephen Henson
2001-02-23Initial support for ASN1_ITEM_FUNCTION option toDr. Stephen Henson
change the way ASN1 modules are exported. Still needs a bit of work for example the hack which a dummy function prototype to avoid compilers warning about multiple ;s.
2001-02-13New function OCSP_parse_url() and -url option for ocsp utility.Dr. Stephen Henson
Doesn't handle SSL URLs yet.
2001-02-12Modify OCSP nonce behaviour.Dr. Stephen Henson
2001-02-05New function to copy nonce values from OCSPDr. Stephen Henson
request to response.
2001-02-04Fix ASN1_TIME_to_generlizedtime().Dr. Stephen Henson
Add protoype for OCSP_response_create(). Add OCSP_request_sign() and OCSP_basic_sign() private key and certificate checks and make OCSP_NOCERTS consistent with PKCS7_NOCERTS
2001-02-03Various OCSP responder utility functions.Dr. Stephen Henson
Delete obsolete OCSP functions. Largely untested at present...
2001-01-26New OCSP response verify option OCSP_TRUSTOTHERDr. Stephen Henson
2001-01-19Additional functionality in ocsp utility: print summaryDr. Stephen Henson
of status info. Check nonce values. Option to disable verify. Update usage message. Rename status to string functions and make them global.
2001-01-18Implement remaining OCSP verify checks inDr. Stephen Henson
accordance with RFC2560.
2001-01-17Initial OCSP certificate verify. Not complete,Dr. Stephen Henson
it just supports a "trusted OCSP global root CA".
2001-01-13New OCSP utility. This can generate, parse and printDr. Stephen Henson
OCSP requests. It can also query reponders and parse or print out responses. Still needs some more work: OCSP response checks and of course documentation.
2001-01-11OCSP basic response verify. Very incompleteDr. Stephen Henson
but will verify the signatures on a response and locate the signers certifcate. Still needs to implement a proper OCSP certificate verify. Fix warning in RAND_egd().
2001-01-08Add prototypes for new OCSP functions.Dr. Stephen Henson
Fix bug in OCSP_find_status().
2001-01-08Add set of OCSP client functions. All experimentalDr. Stephen Henson
and subject to addition, modifcation or deletion. Add two OCSP nonce utility functions. Fix typo in status code name.
2001-01-05Modify OCSP API to more closely reflectDr. Stephen Henson
application needs. Add OCSP library name to error code.
2001-01-04Update OCSP API.Dr. Stephen Henson
Remove extensions argument from various functions because it is not needed with the new extension code. New function OCSP_cert_to_id() to convert a pair of certificates into an OCSP_CERTID. New simple OCSP HTTP function. This is rather primitive but just about adequate to send OCSP requests and parse the response. Fix typo in CRL distribution points extension. Fix ASN1 code so it adds a final null to constructed strings.
2000-12-28Add NO_ASN1_OLD to remove some old style functions:Dr. Stephen Henson
currently OpenSSL itself wont compile with this set because some old style stuff remains. Change old functions X509_sign(), X509_verify() etc to use new item based functions. Replace OCSP function declarations with DECLARE macros.
2000-12-28New OCSP extension functions.Dr. Stephen Henson
2000-12-17Redo OCSP response printing. Remove duplicate orDr. Stephen Henson
obsolete code. Delete some redundant files.
2000-12-15Implement some standard OCSP extensions in the v3 code. TheseDr. Stephen Henson
are all raw print only extensions at present.
2000-12-14Add OCSP nonce extension to supported extensions.Dr. Stephen Henson
This is a little unusual because it can contain no structure i.e. the extension OCTET STRING content octets do not contain a DER encoded structure.
2000-12-14New function X509V3_extensions_print() this removes extension duplicationDr. Stephen Henson
from the print routines. Reorganisation of OCSP code: initial print routines in ocsp_prn.c. Doesn't work fully because OCSP extensions aren't reimplemented yet. Implement some ASN1 functions needed to compile OCSP code.
2000-12-13Replace the old style OCSP ASN1 module.Dr. Stephen Henson
2000-11-14Two OCSP functions that aren't yet implemented.Richard Levitte
2000-11-12Make this stuff compile.Ben Laurie
2000-10-27The majority of the OCSP code from CertCo.Richard Levitte