aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ocsp
Commit message (Collapse)AuthorAgeFilesLines
* In ocsp_match_issuerid() we are passed the CA that signed the responderDr. Stephen Henson2001-07-111-1/+1
| | | | | certificate so need to match its subject with the certificate IDs in the response.
* Typo in comment.Dr. Stephen Henson2001-02-261-2/+2
|
* Enhance OCSP_request_verify() so it finds the signers certificateDr. Stephen Henson2001-02-265-19/+103
| | | | properly and supports several flags.
* make updateRichard Levitte2001-02-261-73/+69
| | | | | Note that all *_it variables are suddenly non-existant according to libeay.num. This is a bug that will be corrected. Please be patient.
* New function and options to check OCSP response validity.Dr. Stephen Henson2001-02-243-2/+87
|
* Make OCSP cert id code tolerate a missing issuer certificateDr. Stephen Henson2001-02-231-5/+16
| | | | or serial number.
* Get rid of ASN1_ITEM_FUNCTIONS dummy functionDr. Stephen Henson2001-02-231-15/+15
| | | | | | prototype hack. This unfortunately means that every ASN1_*_END construct cannot have a trailing ;
* Initial support for ASN1_ITEM_FUNCTION option toDr. Stephen Henson2001-02-233-7/+7
| | | | | | | | 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.
* e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte2001-02-221-56/+56
| | | | | | | | and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
* Use sk_*_new_null() instead of sk_*_new(NULL). That avoids gettingRichard Levitte2001-02-201-2/+2
| | | | lots of silly warnings from the compiler.
* Include string.h so mem* functions get properly declared.Richard Levitte2001-02-201-0/+1
|
* Make all configuration macros available for application by makingRichard Levitte2001-02-193-88/+93
| | | | | | | | | | | | sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
* New function OCSP_parse_url() and -url option for ocsp utility.Dr. Stephen Henson2001-02-133-0/+108
| | | | Doesn't handle SSL URLs yet.
* Modify OCSP nonce behaviour.Dr. Stephen Henson2001-02-123-97/+76
|
* The check for request including a nonce and response not having it wasRichard Levitte2001-02-081-1/+1
| | | | | inversed. Corrected. Hopefully, this will make it work without dumping core.
* Fix AES code.Dr. Stephen Henson2001-02-071-0/+23
| | | | | | | | | | Update Rijndael source to v3.0 Add AES OIDs. Change most references of Rijndael to AES. Add new draft AES ciphersuites.
* New function to copy nonce values from OCSPDr. Stephen Henson2001-02-052-12/+17
| | | | request to response.
* Make depend.Ben Laurie2001-02-041-37/+102
|
* Fix ASN1_TIME_to_generlizedtime().Dr. Stephen Henson2001-02-044-9/+33
| | | | | | | | 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
* Various OCSP responder utility functions.Dr. Stephen Henson2001-02-035-227/+273
| | | | | | Delete obsolete OCSP functions. Largely untested at present...
* Various function for commmon operations.Dr. Stephen Henson2001-02-022-22/+5
|
* New OCSP response verify option OCSP_TRUSTOTHERDr. Stephen Henson2001-01-262-7/+17
|
* Additional functionality in ocsp utility: print summaryDr. Stephen Henson2001-01-193-8/+15
| | | | | | | of status info. Check nonce values. Option to disable verify. Update usage message. Rename status to string functions and make them global.
* Implement remaining OCSP verify checks inDr. Stephen Henson2001-01-183-13/+175
| | | | accordance with RFC2560.
* Initial OCSP certificate verify. Not complete,Dr. Stephen Henson2001-01-174-6/+79
| | | | it just supports a "trusted OCSP global root CA".
* New OCSP utility. This can generate, parse and printDr. Stephen Henson2001-01-132-4/+6
| | | | | | | | 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.
* isspace must be used only on *unsigned* charsBodo Möller2001-01-121-6/+6
|
* Fix typo in OCSP ASN1 module, this causedDr. Stephen Henson2001-01-112-3/+3
| | | | | | | | | | | invalid format in OCSP request signatures. Add spaces to OCSP HTTP header. Change X509_NAME_set() there's no reason why it should return an error if the destination points to NULL... though it should if the destination is NULL.
* OCSP basic response verify. Very incompleteDr. Stephen Henson2001-01-114-4/+156
| | | | | | | | | | 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().
* Add prototypes for new OCSP functions.Dr. Stephen Henson2001-01-082-1/+16
| | | | Fix bug in OCSP_find_status().
* Add set of OCSP client functions. All experimentalDr. Stephen Henson2001-01-087-59/+414
| | | | | | | | and subject to addition, modifcation or deletion. Add two OCSP nonce utility functions. Fix typo in status code name.
* Modify OCSP API to more closely reflectDr. Stephen Henson2001-01-052-28/+8
| | | | | | application needs. Add OCSP library name to error code.
* Update OCSP API.Dr. Stephen Henson2001-01-046-51/+207
| | | | | | | | | | | | | | | | | | 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.
* "make update" plus a rewrite of both .num files.Richard Levitte2000-12-291-112/+69
|
* Add NO_ASN1_OLD to remove some old style functions:Dr. Stephen Henson2000-12-281-65/+19
| | | | | | | | | | 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.
* New OCSP extension functions.Dr. Stephen Henson2000-12-282-11/+237
|
* Various Win32 related fixes. Doesn't compile yet onDr. Stephen Henson2000-12-211-0/+2
| | | | | | | | | | | | | | Win32 but it is getting there... Update mkdef.pl to handle ASN1_ANY and fix headers. Stop various VC++ warnings. Include some fixes from "Peter 'Luna' Runestig" <peter@runestig.com> Remove external declaration for des_set_weak_key_flag: it doesn't exist.
* Fixes to OCSP print code.Dr. Stephen Henson2000-12-202-16/+15
| | | | | | | | | | | | | | Don't try to print request certificates if signature is not present. Remove unnecessary test for certificates being NULL. Fix typos in printed output. Tidy up output. Fix for typo in OCSP_SERVICELOC ASN1 template. Also give a bit more info in CHANGES about the ASN1 revision.
* Redo OCSP response printing. Remove duplicate orDr. Stephen Henson2000-12-179-942/+178
| | | | obsolete code. Delete some redundant files.
* Implement some standard OCSP extensions in the v3 code. TheseDr. Stephen Henson2000-12-151-16/+4
| | | | are all raw print only extensions at present.
* Add OCSP nonce extension to supported extensions.Dr. Stephen Henson2000-12-142-0/+2
| | | | | | 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.
* New function X509V3_extensions_print() this removes extension duplicationDr. Stephen Henson2000-12-145-84/+167
| | | | | | | | | 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.
* Replace the old style OCSP ASN1 module.Dr. Stephen Henson2000-12-138-1022/+167
|
* ignoreUlf Möller2000-11-141-0/+2
|
* Two OCSP functions that aren't yet implemented.Richard Levitte2000-11-141-0/+4
|
* Typo, was "time" instead of "tim".Richard Levitte2000-11-141-1/+1
| | | | Caught by Jeffrey Altman <jaltman@columbia.edu>
* in some new file names the first 8 characters were not uniqueUlf Möller2000-11-121-14/+7
|
* Make this stuff compile.Ben Laurie2000-11-122-11/+12
|
* Instead of just STACK, use STACK_OF(ASN1_OBJECT).Richard Levitte2000-11-031-6/+7
|
* The majority of the OCSP code from CertCo.Richard Levitte2000-10-279-0/+3614