- 20 4月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 04 4月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
just a slowdown.
-
- 08 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 06 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 22 2月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
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.
-
- 20 2月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
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.
-
- 19 2月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 09 1月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
build system...
-
- 08 1月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 29 12月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
- 30 11月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 28 11月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 22 11月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 09 11月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
away now...
-
- 27 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
At the same time, add VMS support for Rijndael.
-
- 20 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
record-oriented fashion. That means that every write() will write a separate record, which will be read separately by the programs trying to read from it. This can be very confusing. The solution is to put a BIO filter in the way that will buffer text until a linefeed is reached, and then write everything a line at a time, so every record written will be an actual line, not chunks of lines and not (usually doesn't happen, but I've seen it once) several lines in one record. Voila, BIO_f_linebuffer() is born. Since we're so close to release time, I'm making this VMS-only for now, just to make sure no code is needlessly broken by this. After the release, this BIO method will be enabled on all other platforms as well.
-
- 16 9月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
- 10 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 09 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 18 8月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 19 6月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 05 4月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
variety of platforms. A few are missing, and they will be added in eventually, but as this is new stuff, it was better to not break lots of platforms in one go that we can't easily test. The changes to "Configure" should illustrate how to add support to other systems if you feel like having a go. NB: I'll add something shortly to allow you to add "dlfcn.h" support on those platforms that don't have (or need) a dlfcn.h header file. (The symbol for Configure will probably by "dlfcn_no_h"). Thanks to Richard Levitte, who is responsible for the dso_dl.c support, understanding the trickier aspects of the build process, and giving great feedback on everything else. [Don't use this stuff if you're easily offended by changes to the interface or behaviour - it's still work in progress.] PR:
-
- 19 3月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 14 3月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 02 3月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 27 2月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
Also, on Alpha, vms.mar is no longer used (it produced a lot of confusing messages) for BN. Instead, the assembler part of bn_lcl.h is used.
-
- 26 2月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 24 2月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 17 1月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
that are directly in crypto/, and prepare for a possible disabling of certain messages that DEC C spews out.
-
- 16 1月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
- 22 12月, 1999 1 次提交
-
-
由 Richard Levitte 提交于
-
- 17 12月, 1999 2 次提交
-
-
由 Richard Levitte 提交于
With this change, the following is provided and present at all times (meaning CRYPTO_MDEBUG is no longer required to get this functionality): - hooks to provide your own allocation and deallocation routines. They have to have the same interface as malloc(), realloc() and free(). They are registered by calling CRYPTO_set_mem_functions() with the function pointers. - hooks to provide your own memory debugging routines. The have to have the same interface as as the CRYPTO_dbg_*() routines. They are registered by calling CRYPTO_set_mem_debug_functions() with the function pointers. I moved everything that was already built into OpenSSL and did memory debugging to a separate file (mem_dbg.c), to make it clear what is what. With this, the relevance of the CRYPTO_MDEBUG has changed. The only thing in crypto/crypto.h that it affects is the definition of the MemCheck_start and MemCheck_stop macros.
-
由 Richard Levitte 提交于
-
- 27 11月, 1999 1 次提交
-
-
由 Richard Levitte 提交于
-
- 12 11月, 1999 1 次提交
-
-
由 Richard Levitte 提交于
Some crypto applications are now being built on Unix, so they should on VMS as well. Not by default, however.
-
- 29 7月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Richard Levitte <levitte@stacken.kth.se>
-