summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2005-05-03Fixes so alerts are sent properly in s3_pkt.cOpenSSL_0_9_6-stableBodo Möller
PR: 851 [backport from OpenSSL_0_9_7-stable branch / head]
2005-04-25remove extra whitespace; fix linkBodo Möller
2005-03-24undo Cygwin changeUlf Möller
2005-03-19Cygwin randomnessUlf Möller
2005-03-11fix potential memory leak when allocation failsBodo Möller
PR: 801 Submitted by: Nils Larsch
2004-11-14PR: 923Dr. Stephen Henson
Typo.
2004-11-01Make sure memmove() is defined, even on SunOS 4.1.4.Richard Levitte
PR: 963
2004-09-28usr/doc has recently changed to usr/share/doc on Cygwin.Richard Levitte
Notified by Corinna Vinschen <vinschen@redhat.com>
2004-08-18'compatibility', not 'computability' :-)...Richard Levitte
2004-07-29We build the crypto stuff, not the ssl stuff, in this command procedure...Richard Levitte
2004-07-12BIS correction/additionBodo Möller
2004-07-01Explain a little better what BN_num_bits() and BN_num_bits_word() do.Richard Levitte
Add a note as to how these functions do not always return the key size, and how one can deal with that. PR: 907
2004-06-28Make sure that the buffers are large enough to contain padding.Richard Levitte
PR: 904
2004-06-28Linux on ARM needs -ldlRichard Levitte
PR: 905
2004-05-06Remove the creation of $(INSTALL_PREFIX)$(OPENSSLDIR)/lib, since we don'tRichard Levitte
use it. Notified by Frédéric L. W. Meunier <0@pervalidus.tk> in PR 713
2004-05-06When the pointer 'from' changes, it's stored length needs to change asRichard Levitte
well. Notified by Frank Kardel <kardel@acm.org> in PR 879.
2004-04-21Extend the index parameter checking from sk_value to sk_set(). Also tidy upGeoff Thorpe
some similar code elsewhere. Thanks to Francesco Petruzzi for bringing this to my attention.
2004-04-02Avoid undefined results when the parameter is out of range.Geoff Thorpe
2004-03-25Wrap code starting with a definition.Richard Levitte
PR: 854
2004-03-23Make it clear that for RSA_NO_PADDING, flen must be RSA_size(rsa)Richard Levitte
2004-03-23make updateRichard Levitte
2004-03-21Change \t to real tab in echo argument.Richard Levitte
PR: 847
2004-03-21Remove a warning for conversion double->long. This has impacts on Windows.Richard Levitte
PR: 849
2004-03-17Bump Revision after taggingMark J. Cox
2004-03-17Fix null-pointer assignment in do_change_cipher_spec() revealedOpenSSL_0_9_6mMark J. Cox
by using the Codenomicon TLS Test Tool (CAN-2004-0079) Prepare for 0.9.6m tagging and release Submitted by: Steven Henson Reviewed by: Joe Orton Approved by: Mark Cox
2004-03-17Win32 fixes.Dr. Stephen Henson
2004-03-05Memory leak fix.Dr. Stephen Henson
2004-03-04Make our page with pointers to binary distributions visible in the FAQRichard Levitte
2004-02-08Fix handling of -offset and -length in asn1parse tool.Dr. Stephen Henson
If -offset exceeds -length of data available exit with an error. Don't read past end of total data available when -offset supplied. If -length exceeds total available truncate it.
2004-01-29Typo.Richard Levitte
2004-01-29Change expt to something else, as in 0.9.7-stable.Richard Levitte
2004-01-29send_*_chars() and do_dump() are private functions and shouldRichard Levitte
therefore be static. Furthermore, send_mem_chars() is unused, so I #if 0'd it.
2004-01-29Include e_os.h the same way as everywhere else.Richard Levitte
2004-01-28Synchronise my debugging target with 0.9.7-stable.Richard Levitte
2004-01-22[Merged from the main trunk]Richard Levitte
Adding a slash between the directoryt and the file is a problem with VMS. The C RTL can handle it well if the "directory" is a logical name with no colon, therefore ending being 'logname/file'. However, if the given logical names actually has a colon, or if you use a full VMS-syntax directory, you end up with 'logname:/file' or 'dev:[dir1.dir2]/file', and that isn't handled in any good way. So, on VMS, we need to check if the directory string ends with a separator (one of ':', ']' or '>' (< and > can be used instead [ and ])), and handle that by not inserting anything between the directory spec and the file name. In all other cases, it's assumed the directory spec is a logical name, so we need to place a colon between it and the file. Notified by Kevin Greaney <kevin.greaney@hp.com>.
2004-01-21Replace expired certificate.Dr. Stephen Henson
2004-01-19Just include "e_os.h" and trust the -I options to the compiler.Richard Levitte
2004-01-18Buffer overrun in e_rc4.c was fixed in Nov 2002 in HEAD and 0_9_7 branches,Andy Polyakov
but never made to 0_9_6... PR: 811
2003-12-01CRYPTO_malloc(), CRYPTO_realloc() and variants of them should return NULLRichard Levitte
if the give size is 0. This is a thought that came up in PR 751.
2003-11-29Make sure the documentation matches reality.Richard Levitte
PR: 755 Notified by: Jakub Bogusz <qboosh@pld-linux.org>
2003-11-29We're getting a clash with C++ because it has a type called 'list'.Richard Levitte
Therefore, change all instances of the symbol 'list' to something else. PR: 758 Submitted by: Frédéric Giudicelli <groups@newpki.org>
2003-11-28RSA_size() and DH_size() return the amount of bytes in a key, and weRichard Levitte
compared it to the amount of bits required... PR: 770 Submitted by: c zhang <czhang2005@hotmail.com>
2003-11-281024 is the export key bits limit according to current regulations, not 512.Richard Levitte
PR: 771 Submitted by: c zhang <czhang2005@hotmail.com>
2003-11-28Let's use text/plain in the example instead of crapy HTML.Richard Levitte
PR: 777 Submitted by: Michael Shields <mshields@sunblocksystems.com>
2003-11-16Fix typo breaking linux-s390x target: "," -> "." .Lutz Jänicke
PR: #759 Submitted by: Martin Kraemer <Martin.Kraemer@Fujitsu-Siemens.com>
2003-11-04Bump revision after taggingMark J. Cox
2003-11-04Stop bug triggering large recursion when presented withOpenSSL_0_9_6lMark J. Cox
certain ASN.1 tags (CAN-2003-0851)
2003-11-03In this version of OpenSSL, declarations aren't always strictRichard Levitte
prototypes, so I'm removing -Wstrict-prototypes and -Wmissing-prototypes from my debugging target in favor of -Wmissing-declarations. That will make other issues more visible than in the middle of a thousand warnings telling me there isn't a proper prototype for this or that function pointer...
2003-10-02Correct a mixup of return valuesRichard Levitte
2003-10-01Include e_os.h to get a proper definition of memmove on the platformsRichard Levitte
that do not have it.