1. 18 5月, 2016 1 次提交
  2. 09 5月, 2016 1 次提交
  3. 30 4月, 2016 1 次提交
  4. 29 4月, 2016 1 次提交
  5. 20 4月, 2016 2 次提交
  6. 13 4月, 2016 2 次提交
  7. 03 4月, 2016 1 次提交
    • K
      Optimized BIO mem read - without reallocation · 9fe9d046
      Kirill Marinushkin 提交于
      Currently on every BIO mem read operation the remaining data is reallocated.
      This commit solves the issue.
      BIO mem structure includes additional pointer to the read position.
      On every read the pointer moves instead of reallocating the memory for the remaining data.
      Reallocation accures before write and some ioctl operations, if the read pointer doesn't point on the beginning of the buffer.
      Also the flag is added to rewind the read pointer without losing the data.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      9fe9d046
  8. 30 3月, 2016 2 次提交
  9. 22 3月, 2016 1 次提交
  10. 20 3月, 2016 1 次提交
  11. 18 3月, 2016 1 次提交
  12. 09 3月, 2016 1 次提交
  13. 12 2月, 2016 1 次提交
  14. 06 2月, 2016 1 次提交
  15. 04 2月, 2016 7 次提交
  16. 01 2月, 2016 1 次提交
  17. 31 1月, 2016 1 次提交
  18. 29 1月, 2016 1 次提交
  19. 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
  20. 08 1月, 2016 1 次提交
  21. 02 12月, 2015 1 次提交
  22. 03 11月, 2015 6 次提交
  23. 03 10月, 2015 1 次提交
  24. 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
  25. 23 9月, 2015 1 次提交
  26. 24 6月, 2015 1 次提交