Commit 25ccb589 authored by Antoine Cœur's avatar Antoine Cœur
Browse files
parent f987a4dd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6884,7 +6884,7 @@
     reason texts, thereby removing some of the footprint that may not
     be interesting if those errors aren't displayed anyway.
     NOTE: it's still possible for any application or module to have it's
     NOTE: it's still possible for any application or module to have its
     own set of error texts inserted.  The routines are there, just not
     used by default when no-err is given.
     [Richard Levitte]
@@ -8850,7 +8850,7 @@ des-cbc 3624.96k 5258.21k 5530.91k 5624.30k 5628.26k
 Changes between 0.9.6g and 0.9.6h  [5 Dec 2002]
  *) New function OPENSSL_cleanse(), which is used to cleanse a section of
     memory from it's contents.  This is done with a counter that will
     memory from its contents.  This is done with a counter that will
     place alternating values in each byte.  This can be used to solve
     two issues: 1) the removal of calls to memset() by highly optimizing
     compilers, and 2) cleansing with other values than 0, since those can
+1 −1
Original line number Diff line number Diff line
@@ -605,7 +605,7 @@

  Major changes between OpenSSL 0.9.7h and OpenSSL 0.9.7i [14 Oct 2005]:

      o Give EVP_MAX_MD_SIZE it's old value, except for a FIPS build.
      o Give EVP_MAX_MD_SIZE its old value, except for a FIPS build.

  Major changes between OpenSSL 0.9.7g and OpenSSL 0.9.7h [11 Oct 2005]:

+1 −1
Original line number Diff line number Diff line
@@ -2345,7 +2345,7 @@ int s_client_main(int argc, char **argv)
            (void)BIO_flush(fbio);
            /*
             * The first line is the HTTP response.  According to RFC 7230,
             * it's formated exactly like this:
             * it's formatted exactly like this:
             *
             * HTTP/d.d ddd Reason text\r\n
             */
+2 −2
Original line number Diff line number Diff line
@@ -38,9 +38,9 @@
        of memory.

        BIO_f_reliable splits data stream into blocks. Each block is prefixed
        with it's length and suffixed with it's digest. So you need only
        with its length and suffixed with its digest. So you need only
        several Kbytes of memory to buffer single block before verifying
        it's digest.
        its digest.

        BIO_f_reliable goes further and adds several important capabilities:

+1 −1
Original line number Diff line number Diff line
@@ -228,7 +228,7 @@ int OSSL_STORE_close(OSSL_STORE_CTX *ctx)
 * Functions to generate OSSL_STORE_INFOs, one function for each type we
 * support having in them as well as a generic constructor.
 *
 * In all cases, ownership of the object is transfered to the OSSL_STORE_INFO
 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO
 * and will therefore be freed when the OSSL_STORE_INFO is freed.
 */
static OSSL_STORE_INFO *store_info_new(int type, void *data)
Loading