1. 01 9月, 2017 1 次提交
  2. 30 8月, 2017 2 次提交
  3. 22 8月, 2017 1 次提交
  4. 23 7月, 2017 1 次提交
  5. 17 7月, 2017 1 次提交
    • R
      Standardize apps use of -rand, etc. · 3ee1eac2
      Rich Salz 提交于
      Standardized the -rand flag and added a new one:
          -rand file...
                  Always reads the specified files
          -writerand file
                  Always writes to the file on exit
      
      For apps that use a config file, the RANDFILE config parameter reads
      the file at startup (to seed the RNG) and write to it on exit if
      the -writerand flag isn't used.
      
      Ensured that every app that took -rand also took -writerand, and
      made sure all of that agreed with all the documentation.
      
      Fix error reporting in write_file and -rand
      Reviewed-by: NPaul Dale <paul.dale@oracle.com>
      (Merged from https://github.com/openssl/openssl/pull/3862)
      3ee1eac2
  6. 07 7月, 2017 1 次提交
  7. 21 6月, 2017 2 次提交
  8. 07 6月, 2017 1 次提交
  9. 03 5月, 2017 1 次提交
  10. 02 5月, 2017 1 次提交
  11. 26 4月, 2017 1 次提交
  12. 15 2月, 2017 1 次提交
  13. 25 1月, 2017 1 次提交
  14. 12 1月, 2017 1 次提交
  15. 02 11月, 2016 1 次提交
  16. 20 10月, 2016 1 次提交
  17. 19 10月, 2016 1 次提交
  18. 16 9月, 2016 1 次提交
  19. 13 9月, 2016 1 次提交
  20. 21 8月, 2016 1 次提交
  21. 19 8月, 2016 1 次提交
  22. 18 8月, 2016 1 次提交
  23. 17 8月, 2016 1 次提交
  24. 16 8月, 2016 1 次提交
  25. 04 8月, 2016 1 次提交
  26. 01 8月, 2016 1 次提交
    • A
      apps/openssl.c: UTF-y Windows argv. · 4e155ec4
      Andy Polyakov 提交于
      Windows never composes UTF-8 strings as result of user interaction
      such as passing command-line argument. The only way to compose one
      is programmatic conversion from WCHAR string, which in turn can be
      picked up on command line.
      
      [For reference, why not wmain, it's not an option on MinGW.]
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4e155ec4
  27. 08 7月, 2016 1 次提交
  28. 21 6月, 2016 1 次提交
  29. 17 6月, 2016 1 次提交
  30. 16 6月, 2016 1 次提交
  31. 27 5月, 2016 1 次提交
    • M
      Fix s_client/s_server waiting for stdin on Windows · 75dd6c1a
      Matt Caswell 提交于
      On Windows we were using the function _kbhit() to determine whether there
      was input waiting in stdin for us to read. Actually all this does is work
      out whether there is a keyboard press event waiting to be processed in the
      input buffer. This only seems to work in a standard Windows console (not
      Msys console) and also doesn't work if you redirect the input from some
      other source (as we do in TLSProxy tests). This commit changes things to
      work differently depending on whether we are on the Windows console or not.
      
      RT#4255
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      75dd6c1a
  32. 18 5月, 2016 1 次提交
  33. 13 5月, 2016 1 次提交
  34. 10 5月, 2016 1 次提交
  35. 18 4月, 2016 1 次提交
  36. 03 4月, 2016 1 次提交
    • V
      Move peer chain security checks into x509_vfy.c · fbb82a60
      Viktor Dukhovni 提交于
      A new X509_VERIFY_PARAM_set_auth_level() function sets the
      authentication security level.  For verification of SSL peers, this
      is automatically set from the SSL security level.  Otherwise, for
      now, the authentication security level remains at (effectively) 0
      by default.
      
      The new "-auth_level" verify(1) option is available in all the
      command-line tools that support the standard verify(1) options.
      
      New verify(1) tests added to check enforcement of chain signature
      and public key security levels.  Also added new tests of enforcement
      of the verify_depth limit.
      
      Updated documentation.
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      fbb82a60
  37. 01 4月, 2016 1 次提交
  38. 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