1. 28 9月, 2019 1 次提交
  2. 11 9月, 2018 1 次提交
  3. 21 6月, 2018 1 次提交
  4. 14 6月, 2016 1 次提交
  5. 18 5月, 2016 1 次提交
  6. 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
  7. 20 12月, 2015 1 次提交
  8. 18 12月, 2015 1 次提交
  9. 22 1月, 2015 1 次提交
  10. 09 12月, 2014 1 次提交
    • G
      Include <openssl/foo.h> instead of "foo.h" · e52a3c3d
      Geoff Thorpe 提交于
      Exported headers shouldn't be included as "foo.h" by code from the same
      module, it should only do so for module-internal headers. This is
      because the symlinking of exported headers (from include/openssl/foo.h
      to crypto/foo/foo.h) is being removed, and the exported headers are
      being moved to the include/openssl/ directory instead.
      
      Change-Id: I4c1d80849544713308ddc6999a549848afc25f94
      Signed-off-by: NGeoff Thorpe <geoff@openssl.org>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      e52a3c3d
  11. 06 4月, 2009 1 次提交
  12. 28 10月, 2008 2 次提交
    • A
      Harmonize Camellia API with version 1.x. · 436bdcff
      Andy Polyakov 提交于
      436bdcff
    • A
      Camellia update. Quoting camellia.c: · 27f864e8
      Andy Polyakov 提交于
      /*
       * This release balances code size and performance. In particular key
       * schedule setup is fully unrolled, because doing so *significantly*
       * reduces amount of instructions per setup round and code increase is
       * justifiable. In block functions on the other hand only inner loops
       * are unrolled, as full unroll gives only nominal performance boost,
       * while code size grows 4 or 7 times. Also, unlike previous versions
       * this one "encourages" compiler to keep intermediate variables in
       * registers, which should give better "all round" results, in other
       * words reasonable performance even with not so modern compilers.
       */
      27f864e8
  13. 02 12月, 2006 1 次提交
  14. 19 7月, 2006 1 次提交
  15. 10 6月, 2006 1 次提交