1. 16 2月, 2016 5 次提交
  2. 15 2月, 2016 16 次提交
  3. 14 2月, 2016 15 次提交
  4. 13 2月, 2016 4 次提交
    • R
      Add SHARED_RCFLAGS in unified Makefile template · af093bf4
      Richard Levitte 提交于
      Also remove a spurious extra $(LDFLAGS)
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      af093bf4
    • V
      async_win.c: remove unused variable · 1b3cddff
      Viktor Szakats 提交于
      Silencing this:
          crypto/async/arch/async_win.c: In function 'async_fibre_init_dispatcher':
          crypto/async/arch/async_win.c:112:12: warning: unused variable 'dispatcher' [-Wunused-variable]
               LPVOID dispatcher;
                      ^
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      1b3cddff
    • R
      The unified build may delete installed manual files · 3af104f3
      Richard Levitte 提交于
      The installation of man files and html files alike didn't properly
      check that file names with different casing could be the same on
      case-insensitive file systems.  This change fixes that.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      3af104f3
    • B
      GH650: Minor tidying around the ocsp app · 21c6c50f
      Benjamin Kaduk 提交于
      The ocsp utility is something of a jack-of-all-trades; most anything
      related to the OCSP can be done with it.  In particular, the manual
      page calls out that it can be used as either a client or a server
      of the protocol, but there are also a few things that it can do
      which do not quite fit into either role, such as encoding an OCSP
      request but not sending it, printing out a text form of an OCSP
      response (or request) from a file akin to the asn1parse utility,
      or performing a lookup into the server-side revocation database
      without actually sending a request or response.  All three of these
      are documented as examples in the manual page, but the documentation
      prior to this commit is somewhat misleading, in that when printing
      the text form of an OCSP response, the code also attempts to
      verify the response, displaying an error message and returning
      failure if the response does not verify.  (It is possible that
      the response would be able to verify with the given example, since
      the default trust roots are used for that verification, but OCSP
      responses frequently have alternate certification authorities
      that would require passing -CAfile or -CApath for verification.)
      
      Tidy up the documentation by passing -noverify for the case of
      converting from binary to textual representation, and also
      change a few instances of -respin to -reqin as appropriate, note
      that the -url option provides the same functionality as the -host
      and -path options, clarify that the example that saves an OCSP
      response to a file will also perform verification on that response,
      and fix a couple grammar nits in the manual page.
      
      Also remove an always-true conditional for rdb != NULL -- there
      are no codepaths in which it could be initialized at the time of
      this check.
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      21c6c50f