1. 16 11月, 2016 2 次提交
  2. 15 11月, 2016 2 次提交
  3. 14 11月, 2016 1 次提交
  4. 10 11月, 2016 5 次提交
  5. 07 11月, 2016 1 次提交
  6. 02 11月, 2016 1 次提交
  7. 08 9月, 2016 1 次提交
  8. 18 8月, 2016 1 次提交
  9. 25 7月, 2016 1 次提交
  10. 18 5月, 2016 1 次提交
  11. 27 4月, 2016 1 次提交
  12. 04 3月, 2016 1 次提交
  13. 12 2月, 2016 2 次提交
  14. 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
  15. 20 12月, 2015 1 次提交
  16. 14 12月, 2015 1 次提交
  17. 10 12月, 2015 1 次提交
  18. 28 11月, 2015 1 次提交
  19. 24 11月, 2015 1 次提交
  20. 30 7月, 2015 1 次提交
  21. 24 6月, 2015 1 次提交
  22. 06 6月, 2015 1 次提交
  23. 13 5月, 2015 1 次提交
  24. 03 5月, 2015 1 次提交
  25. 06 2月, 2015 1 次提交
  26. 03 2月, 2015 1 次提交
  27. 29 1月, 2015 1 次提交
  28. 22 1月, 2015 1 次提交
  29. 04 12月, 2014 1 次提交
  30. 20 5月, 2014 1 次提交
  31. 09 1月, 2014 3 次提交
    • D
      use SSL_kDHE throughout instead of SSL_kEDH · 5a21cadb
      Daniel Kahn Gillmor 提交于
      DHE is the standard term used by the RFCs and by other TLS
      implementations.  It's useful to have the internal variables use the
      standard terminology.
      
      This patch leaves a synonym SSL_kEDH in place, though, so that older
      code can still be built against it, since that has been the
      traditional API.  SSL_kEDH should probably be deprecated at some
      point, though.
      5a21cadb
    • D
      emit "DHE" instead of "edh" for kX packet trace output · 75cb3771
      Daniel Kahn Gillmor 提交于
      other parts of packet tracing emit the standard "DHE" label instead of
      "edh".  This change brings the output of ssl_print_client_keyex() and
      ssl_print_server_keyex() into accordance with the standard term.
      75cb3771
    • D
      use SSL_kECDHE throughout instead of SSL_kEECDH · 4082fea8
      Daniel Kahn Gillmor 提交于
      ECDHE is the standard term used by the RFCs and by other TLS
      implementations.  It's useful to have the internal variables use the
      standard terminology.
      
      This patch leaves a synonym SSL_kEECDH in place, though, so that older
      code can still be built against it, since that has been the
      traditional API.  SSL_kEECDH should probably be deprecated at some
      point, though.
      4082fea8