1. 28 9月, 2019 1 次提交
  2. 28 5月, 2019 1 次提交
  3. 19 3月, 2019 1 次提交
  4. 13 12月, 2018 1 次提交
  5. 25 8月, 2017 1 次提交
  6. 14 6月, 2017 1 次提交
  7. 18 5月, 2016 1 次提交
  8. 06 4月, 2016 1 次提交
  9. 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
  10. 10 11月, 2015 1 次提交
  11. 01 5月, 2015 1 次提交
    • R
      free NULL cleanup 7 · 23a1d5e9
      Rich Salz 提交于
      This gets BN_.*free:
          BN_BLINDING_free BN_CTX_free BN_FLG_FREE BN_GENCB_free
          BN_MONT_CTX_free BN_RECP_CTX_free BN_clear_free BN_free BUF_MEM_free
      
      Also fix a call to DSA_SIG_free to ccgost engine and remove some #ifdef'd
      dead code in engines/e_ubsec.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      23a1d5e9
  12. 12 3月, 2015 1 次提交
    • M
      Fix RSA_X931_derive_ex · 007fd140
      Matt Caswell 提交于
      In the RSA_X931_derive_ex a call to BN_CTX_new is made. This can return
      NULL on error. However the return value is not tested until *after* it is
      derefed! Also at the top of the function a test is made to ensure that
      |rsa| is not NULL. If it is we go to the "err" label. Unfortunately the
      error handling code deref's rsa.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      007fd140
  13. 22 1月, 2015 1 次提交
  14. 08 12月, 2014 2 次提交
  15. 11 5月, 2011 1 次提交
  16. 24 4月, 2011 1 次提交
  17. 04 2月, 2011 1 次提交
  18. 03 2月, 2011 1 次提交
  19. 26 1月, 2011 1 次提交
    • D
      And so it begins... again. · 2b4b28dc
      Dr. Stephen Henson 提交于
      Initial FIPS 140-2 code ported to HEAD. Doesn't even compile yet, may have
      missing files, extraneous files and other nastiness.
      
      In other words: it's experimental ATM, OK?
      2b4b28dc