1. 10 2月, 2021 1 次提交
  2. 04 2月, 2021 1 次提交
  3. 15 10月, 2020 2 次提交
  4. 29 9月, 2020 1 次提交
  5. 17 9月, 2020 1 次提交
  6. 12 9月, 2020 1 次提交
  7. 03 9月, 2020 3 次提交
  8. 12 8月, 2020 1 次提交
  9. 07 8月, 2020 2 次提交
  10. 25 6月, 2020 2 次提交
  11. 23 4月, 2020 1 次提交
  12. 29 1月, 2020 1 次提交
  13. 10 10月, 2019 3 次提交
  14. 25 9月, 2019 1 次提交
  15. 07 9月, 2019 1 次提交
  16. 04 9月, 2019 1 次提交
    • R
      New function EVP_MD_free() · 3fd70262
      Richard Levitte 提交于
      This function re-implements EVP_MD_meth_free(), but has a name that
      isn't encumbered by legacy EVP_MD construction functionality.
      
      We also refactor most of EVP_MD_meth_new() into an internal
      evp_md_new() that's used when creating fetched methods.
      
      EVP_MD_meth_new() and EVP_MD_meth_free() are rewritten in terms of
      evp_md_new() and EVP_MD_free().  This means that at any time, we can
      deprecate all the EVP_MD_meth_ functions with no harmful consequence.
      Reviewed-by: NShane Lontis <shane.lontis@oracle.com>
      (Merged from https://github.com/openssl/openssl/pull/9758)
      3fd70262
  17. 29 8月, 2019 1 次提交
  18. 24 8月, 2019 1 次提交
    • R
      Get rid of the diversity of names for MAC parameters · 703170d4
      Richard Levitte 提交于
      The EVP_PKEY MAC implementations had a diversity of controls that were
      really the same thing.  We did reproduce that for the provider based
      MACs, but are changing our minds on this.  Instead of that, we now use
      one parameter name for passing the name of the underlying ciphers or
      digests to a MAC implementation, "cipher" and "digest", and one
      parameter name for passing the output size of the MAC, "size".
      
      Then we leave it to the EVP_PKEY->EVP_MAC bridge to translate "md"
      to "digest", and "digestsize" to "size".
      Reviewed-by: NShane Lontis <shane.lontis@oracle.com>
      (Merged from https://github.com/openssl/openssl/pull/9667)
      703170d4
  19. 16 8月, 2019 2 次提交