- 12 4月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 11 4月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
verified by looking at 'diff -u ../openssl-0.9.6a/CHANGES CHANGES')
-
- 09 4月, 2001 2 次提交
-
-
由 Bodo Möller 提交于
Ultra-Sparcs (both 32-bit and 64-bit compilations)
-
由 Bodo Möller 提交于
-
- 08 4月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
also 'test' appears to be available as '[' only in 'if' conditions.
-
- 05 4月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
(provided by Stephen)
-
由 Bodo Möller 提交于
-
- 04 4月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 02 4月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
combine in CHOICE options. This was causing d2i_DSAPublicKey() to misbehave.
-
- 31 3月, 2001 1 次提交
-
-
由 Ulf Möller 提交于
-
- 30 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
FreeBSD's /bin/sh.
-
- 29 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
des_encrypt() and des_encrypt() defined on some systems (Solaris and Unixware and maybe others), we rename des_encrypt() to des_encrypt1(). This should have very little impact on external software unless someone has written a mode of DES, since that's all des_encrypt() is meant for.
-
- 28 3月, 2001 2 次提交
-
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
- 22 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
the trunk to keep diffs small.
-
- 18 3月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 16 3月, 2001 3 次提交
-
-
由 Richard Levitte 提交于
It now looks along $PATH for a working bc and returns the absolute path to one that does work.
-
由 Dr. Stephen Henson 提交于
-
由 Dr. Stephen Henson 提交于
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.
-
- 15 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 13 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 11 3月, 2001 4 次提交
-
-
由 Bodo Möller 提交于
The latter does nothing for now, but its existence means that applications can request precomputation when appropriate.
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
multiplication of an arbitrary number of points.
-
由 Richard Levitte 提交于
HTTP responses.
-
- 10 3月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
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.
-
- 09 3月, 2001 4 次提交
-
-
由 Dr. Stephen Henson 提交于
Change the EVP_somecipher() and EVP_somedigest() functions to return constant EVP_MD and EVP_CIPHER pointers. Update docs.
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
and an ectest.c that actually tests something.
-
由 Ulf Möller 提交于
-
- 08 3月, 2001 2 次提交
-
-
由 Bodo Möller 提交于
Incease the number of BIGNUMs in a BN_CTX.
-
由 Dr. Stephen Henson 提交于
Make EVP_Digest*() routines return a value. TODO: update docs, and make soe other routines which use EVP_Digest*() check return codes.
-
- 07 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 05 3月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Bodo Möller 提交于
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
-
- 02 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
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).
-
- 01 3月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Fix bug in copy_email() which would not find emailAddress at start of subject name.
-
- 28 2月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Fix a bug which caused BN_div to produce the wrong result if rm==num and num < 0.
-
- 26 2月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Enhance OCSP_request_verify() so it finds the signers certificate properly and supports several flags.
-
- 24 2月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-