1. 01 4月, 2016 1 次提交
  2. 31 3月, 2016 1 次提交
    • R
      Fix pointer size issues with argv on VMS · 087ca80a
      Richard Levitte 提交于
      The argument 'argv' in 'main' is a short pointer to a short pointer on
      VMS, regardless of initial pointer size.  We must therefore make sure
      that 'copy_argv' gets a 32-bit pointer for argv, and that the copied
      argv is used for the rest of main().
      
      This introduces the local type argv_t, which will have correct pointer
      size in all cases (and be harmless on all other platforms) as well as
      the macro Argv, which is defined as 'copied_argv' or 'argv', as the
      case may be.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      087ca80a
  3. 22 3月, 2016 1 次提交
  4. 21 3月, 2016 1 次提交
  5. 20 3月, 2016 1 次提交
  6. 19 3月, 2016 1 次提交
  7. 18 3月, 2016 1 次提交
  8. 11 3月, 2016 1 次提交
  9. 10 3月, 2016 2 次提交
  10. 08 3月, 2016 1 次提交
    • T
      GH787: Fix ALPN · 817cd0d5
      Todd Short 提交于
      * Perform ALPN after the SNI callback; the SSL_CTX may change due to
        that processing
      * Add flags to indicate that we actually sent ALPN, to properly error
        out if unexpectedly received.
      * clean up ssl3_free() no need to explicitly clear when doing memset
      * document ALPN functions
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NEmilia Käsper <emilia@openssl.org>
      817cd0d5
  11. 04 3月, 2016 1 次提交
  12. 26 2月, 2016 1 次提交
  13. 23 2月, 2016 1 次提交
  14. 19 2月, 2016 1 次提交
  15. 17 2月, 2016 1 次提交
  16. 15 2月, 2016 1 次提交
  17. 11 2月, 2016 2 次提交
  18. 09 2月, 2016 1 次提交
  19. 07 2月, 2016 1 次提交
  20. 06 2月, 2016 1 次提交
  21. 04 2月, 2016 1 次提交
    • E
      RT3234: disable compression · dc5744cb
      Emilia Kasper 提交于
      CRIME protection: disable compression by default, even if OpenSSL is
      compiled with zlib enabled. Applications can still enable compression by
      calling SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION), or by using
      the SSL_CONF library to configure compression. SSL_CONF continues to
      work as before:
      
      SSL_CONF_cmd(ctx, "Options", "Compression") enables compression.
      
      SSL_CONF_cmd(ctx, "Options", "-Compression") disables compression (now
      no-op by default).
      
      The command-line switch has changed from -no_comp to -comp.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      dc5744cb
  22. 03 2月, 2016 1 次提交
  23. 30 1月, 2016 2 次提交
  24. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  25. 21 1月, 2016 1 次提交
  26. 14 1月, 2016 2 次提交
  27. 13 1月, 2016 1 次提交
  28. 21 11月, 2015 1 次提交
  29. 25 9月, 2015 1 次提交
    • M
      Add support for -no-CApath and -no-CAfile options · 2b6bcb70
      Matt Caswell 提交于
      For those command line options that take the verification options
      -CApath and -CAfile, if those options are absent then the default path or
      file is used instead. It is not currently possible to specify *no* path or
      file at all. This change adds the options -no-CApath and -no-CAfile to
      specify that the default locations should not be used to all relevant
      applications.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      2b6bcb70
  30. 18 9月, 2015 1 次提交
  31. 11 9月, 2015 1 次提交
  32. 06 9月, 2015 4 次提交
  33. 27 8月, 2015 1 次提交