1. 04 2月, 2016 1 次提交
  2. 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
  3. 17 12月, 2015 1 次提交
    • R
      Rename some BUF_xxx to OPENSSL_xxx · 7644a9ae
      Rich Salz 提交于
      Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
      Add #define's for the old names.
      Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      7644a9ae
  4. 30 9月, 2015 1 次提交
    • D
      Fix no-stdio build · 984d6c60
      David Woodhouse 提交于
      Much related/similar work also done by
      Ivan Nestlerode <ivan.nestlerode@sonos.com>
      
         +Replace FILE BIO's with dummy ops that fail.
         +Include <stdio.h> for sscanf() even with no-stdio (since the declaration
          is there). We rely on sscanf() to parse the OPENSSL_ia32cap environment
          variable, since it can be larger than a 'long'. And we don't rely on the
          availability of strtoull().
         +Remove OPENSSL_stderr(); not used.
         +Make OPENSSL_showfatal() do nothing (currently without stdio there's
          nothing we can do).
         +Remove file-based functionality from ssl/. The function
          prototypes were already gone, but not the functions themselves.
         +Remove unviable conf functionality via SYS_UEFI
         +Add fallback definition of BUFSIZ.
         +Remove functions taking FILE * from header files.
         +Add missing DECLARE_PEM_write_fp_const
         +Disable X509_LOOKUP_hash_dir(). X509_LOOKUP_file() was already compiled out,
          so remove its prototype.
         +Use OPENSSL_showfatal() in CRYPTO_destroy_dynlockid().
         +Eliminate SRP_VBASE_init() and supporting functions. Users will need to
          build the verifier manually instead.
         +Eliminate compiler warning for unused do_pk8pkey_fp().
         +Disable TEST_ENG_OPENSSL_PKEY.
         +Disable GOST engine as is uses [f]printf all over the place.
         +Eliminate compiler warning for unused send_fp_chars().
      Signed-off-by: NRich Salz <rsalz@akamai.com>
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      984d6c60
  5. 22 9月, 2015 1 次提交
  6. 14 5月, 2015 1 次提交
  7. 03 5月, 2015 1 次提交
  8. 22 1月, 2015 4 次提交
  9. 13 1月, 2015 1 次提交
  10. 11 12月, 2010 1 次提交
  11. 29 4月, 2010 1 次提交
  12. 22 4月, 2010 1 次提交
  13. 23 3月, 2010 1 次提交
  14. 16 3月, 2010 1 次提交
  15. 04 10月, 2009 1 次提交
  16. 22 12月, 2008 1 次提交
  17. 04 1月, 2008 1 次提交
  18. 30 1月, 2006 1 次提交
  19. 19 12月, 2005 1 次提交
  20. 04 11月, 2005 1 次提交
  21. 30 9月, 2005 2 次提交
  22. 06 6月, 2005 1 次提交
  23. 18 5月, 2005 1 次提交
    • A
      Engage Applink in mingw. Note that application-side module is not · 51ff6bde
      Andy Polyakov 提交于
      compiled into *our* aplpications. That's because mingw is always
      consistent with itself. Having library-side code linked into .dll
      makes it possible to deploy the .dll with user-code compiled with
      another compiler [which is pretty much the whole point behind Applink].
      51ff6bde
  24. 17 5月, 2005 1 次提交
  25. 28 12月, 2004 1 次提交
  26. 24 3月, 2004 1 次提交
  27. 22 3月, 2004 1 次提交
  28. 27 12月, 2003 1 次提交
    • R
      Use BUF_strlcpy() instead of strcpy(). · d420ac2c
      Richard Levitte 提交于
      Use BUF_strlcat() instead of strcat().
      Use BIO_snprintf() instead of sprintf().
      In some cases, keep better track of buffer lengths.
      This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
      d420ac2c
  29. 28 11月, 2003 1 次提交
  30. 28 9月, 2003 1 次提交
  31. 29 12月, 2002 1 次提交
  32. 11 6月, 2002 1 次提交
  33. 25 1月, 2002 1 次提交
    • B
      New functions · a14e2d9d
      Bodo Möller 提交于
          ERR_peek_last_error
          ERR_peek_last_error_line
          ERR_peek_last_error_line_data
      (supersedes ERR_peek_top_error).
      
      Rename OPENSSL_NO_OLD_DES_SUPPORT into OPENSSL_DISABLE_OLD_DES_SUPPORT
      because OPENSSL_NO_... indicates disabled algorithms (according to
      mkdef.pl).
      a14e2d9d
  34. 23 1月, 2002 1 次提交
  35. 02 7月, 2001 1 次提交
  36. 20 2月, 2001 1 次提交