1. 03 7月, 2018 1 次提交
  2. 18 10月, 2017 1 次提交
  3. 30 8月, 2017 1 次提交
  4. 22 8月, 2017 1 次提交
  5. 15 6月, 2016 1 次提交
  6. 26 5月, 2016 1 次提交
    • R
      Handle Visual C warning about non-standard function names. · dc6b5c7b
      Richard Levitte 提交于
      Visual C version from version 2003 complain about certain function
      names, for example:
      
          apps\apps.c(2572) : warning C4996: 'open': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _open. See online help for details.
      
      This adds preprocessor aliases for them in e_os.h.
      
      Additionally, crypto/conf/conf_lib.c needs to include e_os.h to catch
      those aliases.
      
      RT#4488
      RT#4489
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      dc6b5c7b
  7. 24 5月, 2016 1 次提交
  8. 18 5月, 2016 1 次提交
  9. 08 3月, 2016 1 次提交
  10. 11 2月, 2016 2 次提交
  11. 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
  12. 11 8月, 2015 1 次提交
  13. 11 5月, 2015 1 次提交
  14. 31 1月, 2015 1 次提交
  15. 22 1月, 2015 1 次提交
  16. 15 1月, 2015 1 次提交
    • R
      Cleanup OPENSSL_NO_xxx, part 1 · 4b618848
      Rich Salz 提交于
      OPENSSL_NO_RIPEMD160, OPENSSL_NO_RIPEMD merged into OPENSSL_NO_RMD160
      OPENSSL_NO_FP_API merged into OPENSSL_NO_STDIO
      Two typo's on #endif comments fixed:
      	OPENSSL_NO_ECB fixed to OPENSSL_NO_OCB
      	OPENSSL_NO_HW_SureWare fixed to OPENSSL_NO_HW_SUREWARE
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b618848
  17. 26 5月, 2008 1 次提交
  18. 21 1月, 2007 1 次提交
  19. 08 4月, 2005 1 次提交
  20. 14 6月, 2002 1 次提交
  21. 19 1月, 2002 1 次提交
  22. 28 6月, 2001 1 次提交
    • D
      · b7a26e6d
      Dr. Stephen Henson 提交于
      Modify apps to use NCONF code instead of old CONF code.
      
      Add new extension functions which work with NCONF.
      
      Tidy up extension config routines and remove redundant code.
      
      Fix NCONF_get_number().
      
      Todo: more testing of apps to see they still work...
      b7a26e6d
  23. 20 2月, 2001 2 次提交
    • R
      Use new-style system-id macros everywhere possible. I hope I haven't · bc36ee62
      Richard Levitte 提交于
      missed any.
      
      This compiles and runs on Linux, and external applications have no
      problems with it.  The definite test will be to build this on VMS.
      bc36ee62
    • R
      Make all configuration macros available for application by making · cf1b7d96
      Richard Levitte 提交于
      sure they are available in opensslconf.h, by giving them names starting
      with "OPENSSL_" to avoid conflicts with other packages and by making
      sure e_os2.h will cover all platform-specific cases together with
      opensslconf.h.
      
      I've checked fairly well that nothing breaks with this (apart from
      external software that will adapt if they have used something like
      NO_KRB5), but I can't guarantee it completely, so a review of this
      change would be a good thing.
      cf1b7d96
  24. 06 2月, 2001 1 次提交
  25. 19 10月, 2000 2 次提交
  26. 16 10月, 2000 1 次提交
  27. 13 10月, 2000 1 次提交
  28. 26 4月, 2000 1 次提交
  29. 09 4月, 2000 1 次提交
    • R
      I've always wanted to make the CONF library more adaptable. Here's · d86b6915
      Richard Levitte 提交于
      the result.
      
      I have retained the old behavior of the CONF_* functions, and have
      added a more "object oriented" interface through NCONF_* functions
      (New CONF, you see :-)), working the same way as, for example, the
      BIO interface.  Really, the CONF_* are rewritten so they use the
      NCONF_* functions internally.
      
      In addition to that, I've split the old conf.c code into two files,
      conf_def.c and conf_api.c.  conf_def.c contains the default config
      object that reads a configuration file the standard OpenSSL way, as
      well as configuration file with Win32 registry file syntax (I'm not
      sure I got that one right).  conf_api.c provides an API to build other
      configuration file readers around (can you see a configuraion file in
      XML?  I can :-)).
      
      Finally, I've changed the name conf_lcl.h to conf_def.h, since it's
      made specifically for that "class" and none others.
      d86b6915