- Mar 09, 2001
-
-
Dr. Stephen Henson authored
Change the EVP_somecipher() and EVP_somedigest() functions to return constant EVP_MD and EVP_CIPHER pointers. Update docs.
-
- Mar 08, 2001
-
-
Bodo Möller authored
-
Bodo Möller authored
and an ectest.c that actually tests something.
-
Ulf Möller authored
-
Bodo Möller authored
Incease the number of BIGNUMs in a BN_CTX.
-
Dr. Stephen Henson authored
Make EVP_Digest*() routines return a value. TODO: update docs, and make soe other routines which use EVP_Digest*() check return codes.
-
- Mar 07, 2001
-
-
Bodo Möller authored
-
- Mar 05, 2001
-
-
Richard Levitte authored
-
Bodo Möller authored
sets the subject name for a new request or supersedes the subject name in a given request. Add options '-batch' and '-verbose' to 'openssl req'. Submitted by: Massimiliano Pala <madwolf@hackmasters.net> Reviewed by: Bodo Moeller
-
- Mar 02, 2001
-
-
Richard Levitte authored
functions on platform were that's the best way to handle exporting global variables in shared libraries. To enable this functionality, one must configure with "EXPORT_VAR_AS_FN" or defined the C macro "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter is normally done by Configure or something similar). To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL in the source file (foo.c) like this: OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1; OPENSSL_IMPLEMENT_GLOBAL(double,bar); To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL and OPENSSL_GLOBAL_REF in the header file (foo.h) like this: OPENSSL_DECLARE_GLOBAL(int,foo); #define foo OPENSSL_GLOBAL_REF(foo) OPENSSL_DECLARE_GLOBAL(double,bar); #define bar OPENSSL_GLOBAL_REF(bar) The #defines are very important, and therefore so is including the header file everywere where the defined globals are used. The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition of ASN.1 items, but that structure is a bt different. The largest change is in util/mkdef.pl which has been enhanced with better and easier to understand logic to choose which symbols should go into the Windows .def files as well as a number of fixes and code cleanup (among others, algorithm keywords are now sorted lexicographically to avoid constant rewrites).
-
- Mar 01, 2001
-
-
Dr. Stephen Henson authored
Fix bug in copy_email() which would not find emailAddress at start of subject name.
-
- Feb 28, 2001
-
-
Dr. Stephen Henson authored
Fix a bug which caused BN_div to produce the wrong result if rm==num and num < 0.
-
- Feb 26, 2001
-
-
Dr. Stephen Henson authored
Enhance OCSP_request_verify() so it finds the signers certificate properly and supports several flags.
-
- Feb 24, 2001
-
-
Dr. Stephen Henson authored
-
Dr. Stephen Henson authored
Print out OID of unknown signature or public key algorithms.
-
Dr. Stephen Henson authored
key algorithms and leaking if the signature verify fails.
-
- Feb 23, 2001
-
-
Dr. Stephen Henson authored
or serial number.
-
Dr. Stephen Henson authored
-
- Feb 21, 2001
-
-
Geoff Thorpe authored
-
Richard Levitte authored
form '#if defined(...) || defined(...) || ...' and '#if !defined(...) && !defined(...) && ...'. This also avoids the growing number of special cases it was previously handling (some of them wrongly).
-
- Feb 20, 2001
-
-
Bodo Möller authored
Mention BN_[pseudo_]rand with top=-1 in CHANGES.
-
- Feb 19, 2001
-
-
Ulf Möller authored
-
Richard Levitte authored
-
Richard Levitte authored
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.
-
Dr. Stephen Henson authored
Remove the old broken bio read of serial numbers in the 'ca' index file. This would choke if a revoked certificate was specified with a negative serial number. Fix typo in uid.c
-
Bodo Möller authored
-
- Feb 16, 2001
-
-
Dr. Stephen Henson authored
Add revelant new X509V3 extensions. Add OIDs. Fix ASN1 memory leak code to pop info if external allocation used.
-
- Feb 15, 2001
-
-
Lutz Jänicke authored
-
Lutz Jänicke authored
-
- Feb 14, 2001
-
-
Dr. Stephen Henson authored
Add -nopad option to enc command. Update docs.
-
Dr. Stephen Henson authored
-
Ulf Möller authored
-
- Feb 13, 2001
-
-
Dr. Stephen Henson authored
Doesn't handle SSL URLs yet.
-
- Feb 12, 2001
-
-
Dr. Stephen Henson authored
-
Dr. Stephen Henson authored
-
- Feb 10, 2001
-
-
Bodo Möller authored
-
Dr. Stephen Henson authored
Fix CRL printing to correctly show when there are no revoked certificates. Make ca.c correctly initialize the revocation date. Make ASN1_UTCTIME_set_string() and ASN1_GENERALIZEDTIME_set_string() set the string type: so they can initialize ASN1_TIME structures properly.
-
- Feb 09, 2001
-
-
Lutz Jänicke authored
the clients choice; in SSLv2 the client uses the server's preferences.
-
Dr. Stephen Henson authored
and ASN1 code.
-
- Feb 08, 2001
-
-
Dr. Stephen Henson authored
OCSP responses. Documentation to follow... Urgh.. this conflicted with the -VAfile patch I hope I haven't broken it.
-