- 02 6月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
-
- 01 6月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Karsten Spang <ks@bellesystems.com>
-
- 02 5月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
"Jan Mikkelsen" <janm@transactionsite.com> correctly states that the OpenSSL header files have #include's and extern "C"'s in an incorrect order. Thusly fixed.
-
- 20 4月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
initialised, at which point an appropriate default was chosen. This meant a call to RSA_get_default_method might have returned FALSE. This change fixes that; now any called to RSA_new(), RSA_new_method(NULL), or RSA_get_default_method() will ensure that a default is chosen if it wasn't already.
-
- 05 3月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 22 2月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
library, the output buffer always is large enough, but if the tlen parameter is there, it should be checked in the interest of clarity, as proposed by David Sacerdote <das33@cornell.edu>.
-
- 05 2月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
temporary BIGNUMs. BN_CTX still uses a fixed number of BIGNUMs, but the BN_CTX implementation could now easily be changed.
-
- 04 2月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
-
- 31 1月, 2000 2 次提交
-
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
- 24 1月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Tidy up CRYPTO_EX_DATA structures.
-
- 23 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
-
- 18 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
benefit of MS-DOS users.
-
- 15 1月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
(and rename a target in test/Makefile.ssl to make it easier to guess the name of the file executed by it)
-
- 14 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
returns int (1 = ok, 0 = not seeded). New function RAND_add() is the same as RAND_seed() but takes an estimate of the entropy as an additional argument.
-
- 12 1月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
Primes p where (p-1)/2 is prime too are called "safe", not "strong".
-
- 26 10月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Lennart Bång, Bodo Möller
-
- 20 10月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
tolerated in certificates.
-
- 19 9月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
and verify rather than direct encrypt/decrypt.
-
- 10 9月, 1999 2 次提交
-
-
由 Bodo Möller 提交于
-
由 Ben Laurie 提交于
-
- 09 9月, 1999 3 次提交
-
-
由 Dr. Stephen Henson 提交于
-
由 Dr. Stephen Henson 提交于
-
由 Dr. Stephen Henson 提交于
OpenSSL is compiled with NO_RSA, no RSA operations can be used: including key generation storage and display of RSA keys. Since these operations are not covered by the RSA patent (my understanding is it only covers encrypt, decrypt, sign and verify) they can be included: this is an often requested feature, attempts to use the patented operations return an error code. This is enabled by setting RSA_NULL. This means that if a particular application has its own legal US RSA implementation then it can use that instead by setting it as the default RSA method. Still experimental and needs some fiddling of the other libraries so they have some options that don't attempt to use RSA if it isn't allowed.
-
- 28 7月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 16 7月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
-
- 13 7月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
unnecessary cast.
-
- 12 7月, 1999 4 次提交
-
-
由 Bodo Möller 提交于
insert spaces in products that occur in error codes
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
openssl rsa -check
-
- 10 7月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
-
- 30 6月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
RSA structure internals.
-
- 25 6月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
-
- 05 6月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 04 6月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 21 5月, 1999 3 次提交
-
-
由 Bodo Möller 提交于
in cryptlib.h (which is often included as "../cryptlib.h"), then the question remains relative to which directory this is to be interpreted. gcc went one further directory up, as intended; but makedepend thinks differently, and so probably do some C compilers. So the ../ must go away; thus e_os.h goes back into include/openssl (but I now use #include "openssl/e_os.h" instead of <openssl/e_os.h> to make the point) -- and we have another huge bunch of dependency changes. Argh.
-
由 Bodo Möller 提交于
There were problems with putting e_os.h just into the top directory, because the test programs are compiled within test/ in the "standard" case in in their original directories in the makefile.one case; and in the latter symlinks may not be available.
-
由 Bodo Möller 提交于
include file.
-
- 20 5月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Andy Polyakov <appro@fy.chalmers.se>
-