- 09 2月, 2015 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Free up bio_err after memory leak data has been printed to it. In int_free_ex_data if ex_data is NULL there is nothing to free up so return immediately and don't reallocate it. Reviewed-by: NTim Hudson <tjh@openssl.org>
-
- 31 1月, 2015 1 次提交
-
-
由 Rich Salz 提交于
Reviewed-by: NTim Hudson <tjh@openssl.org>
-
- 24 1月, 2015 1 次提交
-
-
由 Rich Salz 提交于
Rename OPENSSL_SYSNAME_xxx to OPENSSL_SYS_xxx Remove MS_STATIC; it's a relic from platforms <32 bits. Reviewed-by: NAndy Polyakov <appro@openssl.org> Reviewed-by: NTim Hudson <tjh@openssl.org>
-
- 22 1月, 2015 2 次提交
-
-
由 Matt Caswell 提交于
This should be a one off operation (subsequent invokation of the script should not move them) Reviewed-by: NTim Hudson <tjh@openssl.org>
-
由 Matt Caswell 提交于
Reviewed-by: NTim Hudson <tjh@openssl.org>
-
- 13 1月, 2015 1 次提交
-
-
由 Rich Salz 提交于
This last one for this ticket. Removes WIN16. So long, MS_CALLBACK and MS_FAR. We won't miss you. Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 31 12月, 2014 1 次提交
-
-
由 Tim Hudson 提交于
indent will not alter them when reformatting comments Reviewed-by: NRich Salz <rsalz@openssl.org> Reviewed-by: NMatt Caswell <matt@openssl.org>
-
- 30 12月, 2014 1 次提交
-
-
由 Kurt Roeckx 提交于
The BIO_free() allocated ex_data again that we already freed. Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 28 3月, 2013 1 次提交
-
-
由 Dr. Stephen Henson 提交于
(cherry picked from commit 944bc29f9004cf8851427ebfa83ee70b8399da57)
-
- 20 5月, 2011 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 13 5月, 2011 1 次提交
-
-
由 Dr. Stephen Henson 提交于
FIPS_mode_set is implemented.
-
- 05 4月, 2011 1 次提交
-
-
由 Dr. Stephen Henson 提交于
to missing DRBG support in libcrypto.
-
- 25 3月, 2011 1 次提交
-
-
由 Richard Levitte 提交于
different options: "64" The build system will choose /POINTER_SIZE=64=ARGV if the compiler supports it, otherwise /POINTER_SIZE=64. "64=" The build system will force /POINTER_SIZE=64. "64=ARGV" The build system will force /POINTER_SIZE=64=ARGV.
-
- 20 3月, 2011 1 次提交
-
-
由 Richard Levitte 提交于
directly in main(). 'if needed' also includes when argv is a 32 bit pointer in an otherwise 64 bit environment. * apps/makeapps.com: When using /POINTER_SIZE=64, try to use the additional =ARGV, but only if it's supported. Fortunately, DCL is very helpful telling us in this case.
-
- 19 3月, 2011 1 次提交
-
-
由 Richard Levitte 提交于
submitted by Steven M. Schweda <sms@antinode.info>
-
- 05 10月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 30 3月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
of having to manually include each one.
-
- 16 9月, 2008 1 次提交
-
-
由 Bodo Möller 提交于
Also, fix CHANGES (consistency with stable branch).
-
- 05 7月, 2008 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument.
-
- 01 6月, 2008 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 26 5月, 2008 1 次提交
-
-
由 Ben Laurie 提交于
-
- 09 7月, 2006 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 09 6月, 2006 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Masashi Fujita Reviewed by: Bodo Moeller
-
- 05 4月, 2006 2 次提交
-
-
由 Dr. Stephen Henson 提交于
visible.
-
由 Dr. Stephen Henson 提交于
line option to print out info.
-
- 06 4月, 2005 1 次提交
-
-
由 Nils Larsch 提交于
-
- 14 8月, 2003 1 次提交
-
-
由 Bodo Möller 提交于
invalid cases) PR: 674
-
- 31 1月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
PR: 287
-
- 04 12月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
exit() in whatever way works for the intended platform, and define OPENSSL_EXIT() to have the old meaning (the name is of course because it's only used in the openssl program)
-
- 18 11月, 2002 1 次提交
-
-
由 Bodo Möller 提交于
(we can't release it before the CRYPTO_mem_leaks() call!) Submitted by: Nils Larsch
-
- 13 11月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 09 10月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
for monolithic as well as non-monolithic biuld. More work is probably needed in this area. PR: 144
-
- 10 7月, 2002 1 次提交
-
-
由 Lutz Jänicke 提交于
des_old.h redefines crypt: #define crypt(b,s)\ DES_crypt((b),(s)) This scheme leads to failure, if header files with the OS's true definition of crypt() are processed _after_ des_old.h was processed. This is e.g. the case on HP-UX with unistd.h. As evp.h now again includes des.h (which includes des_old.h), this problem only came up after this modification. Solution: move header files (indirectly) including e_os.h before the header files (indirectly) including evp.h. Submitted by: Reviewed by: PR:
-
- 07 4月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
Submitted by Compaq.
-
- 21 10月, 2001 2 次提交
-
-
由 Dr. Stephen Henson 提交于
Stop spurious "unable to load config info" errors in req
-
由 Bodo Möller 提交于
New macros SSL[_CTX]_set_msg_callback_arg(). Message callback imlementation for SSL 3.0/TLS 1.0 (no SSL 2.0 yet). New '-msg' option for 'openssl s_client' and 'openssl s_server' that enable a message callback that displays all protocol messages. In ssl3_get_client_hello (ssl/s3_srvr.c), generate a fatal alert if client_version is smaller than the protocol version in use. Also change ssl23_get_client_hello (ssl/s23_srvr.c) to select TLS 1.0 if the client demanded SSL 3.0 but only TLS 1.0 is enabled; then the client will at least see that alert. Fix SSL[_CTX]_ctrl prototype (void * instead of char * for generic pointer). Add/update some OpenSSL copyright notices.
-
- 12 9月, 2001 1 次提交
-
-
由 Geoff Thorpe 提交于
-
- 11 9月, 2001 3 次提交
-
-
由 Geoff Thorpe 提交于
macros in apps.h.
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
-