1. 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
  2. 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
  3. 10 11月, 2015 1 次提交
  4. 11 9月, 2015 1 次提交
  5. 14 5月, 2015 1 次提交
  6. 11 5月, 2015 1 次提交
  7. 24 1月, 2015 1 次提交
    • R
      ifdef cleanup, part 4a: '#ifdef undef' · a2b18e65
      Rich Salz 提交于
      This removes all code surrounded by '#ifdef undef'
      One case is left: memmove() replaced by open-coded for loop,
      in crypto/stack/stack.c  That needs further review.
      
      Also removed a couple of instances of /* dead code */ if I saw them
      while doing the main removal.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      a2b18e65
  8. 22 1月, 2015 1 次提交
  9. 06 11月, 2008 1 次提交
  10. 21 1月, 2007 1 次提交
  11. 11 5月, 2005 1 次提交
    • B
      Fix more error codes. · 8afca8d9
      Bodo Möller 提交于
      (Also improve util/ck_errf.pl script, and occasionally
      fix source code formatting.)
      8afca8d9
  12. 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
  13. 25 3月, 2003 1 次提交
  14. 13 11月, 2002 1 次提交
  15. 13 6月, 2002 1 次提交
    • D
      The new ASN1 code automatically allocates · 04cc7666
      Dr. Stephen Henson 提交于
      structures for fields that are not OPTIONAL.
      
      However in the AUTHORITY_INFO_ACCESS case
      the 'location' field was set to NULL in
      the old code.
      
      So in 0.9.7+ we should free up the field before
      overwriting it in v2i_AUTHORITY_INFO_ACCESS.
      04cc7666
  16. 27 10月, 2001 1 次提交
  17. 23 2月, 2001 2 次提交
  18. 13 12月, 2000 1 次提交
    • D
      · 2aff7727
      Dr. Stephen Henson 提交于
      Rewrite the extension code to use an ASN1_ITEM structure
      for its ASN1 operations as well as the old style function
      pointers (i2d, d2i, new, free). Change standard extensions
      to support this.
      
      Fix a warning in BN_mul(), bn_mul.c about uninitialised 'j'.
      2aff7727
  19. 09 12月, 2000 1 次提交
    • D
      · 9d6b1ce6
      Dr. Stephen Henson 提交于
      Merge from the ASN1 branch of new ASN1 code
      to main trunk.
      
      Lets see if the makes it to openssl-cvs :-)
      9d6b1ce6
  20. 27 10月, 2000 1 次提交
  21. 18 9月, 2000 1 次提交
  22. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  23. 11 2月, 2000 1 次提交
  24. 31 1月, 2000 1 次提交
  25. 24 11月, 1999 1 次提交