- Mar 28, 2001
-
-
Ulf Möller authored
-
Ulf Möller authored
-
- Mar 22, 2001
-
-
Bodo Möller authored
the trunk to keep diffs small.
-
- Mar 18, 2001
-
-
Dr. Stephen Henson authored
-
- Mar 16, 2001
-
-
Richard Levitte authored
It now looks along $PATH for a working bc and returns the absolute path to one that does work.
-
Dr. Stephen Henson authored
-
- Mar 15, 2001
-
-
Dr. Stephen Henson authored
Overhaul the display of certificate details in the 'ca' utility. This can now be extensively customised in the configuration file and handles multibyte strings and extensions properly. This is required when extensions copying from certificate requests is supported: the user must be able to view the extensions before allowing a certificate to be issued.
-
Bodo Möller authored
-
- Mar 12, 2001
-
-
Bodo Möller authored
-
- Mar 11, 2001
-
-
Bodo Möller authored
The latter does nothing for now, but its existence means that applications can request precomputation when appropriate.
-
- Mar 10, 2001
-
-
Bodo Möller authored
-
Bodo Möller authored
multiplication of an arbitrary number of points.
-
Richard Levitte authored
HTTP responses.
-
Dr. Stephen Henson authored
Add the 'ec' directory to mkdef.pl and mkfiles.pl so the Windows build can see it. Fixup mkdef.pl so it doesn't mess up with function names longer than 39 characters in length.
-
- 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
-