1. 14 3月, 2018 1 次提交
  2. 13 2月, 2018 1 次提交
  3. 08 2月, 2018 1 次提交
  4. 07 8月, 2017 1 次提交
  5. 08 6月, 2017 1 次提交
    • R
      make error tables const and separate header file · 52df25cf
      Rich Salz 提交于
      Run perltidy on util/mkerr
      Change some mkerr flags, write some doc comments
      Make generated tables "const" when genearting lib-internal ones.
      Add "state" file for mkerr
      Renerate error tables and headers
      Rationalize declaration of ERR_load_XXX_strings
      Fix out-of-tree build
      Add -static; sort flags/vars for options.
      Also tweak code output
      Moved engines/afalg to engines (from master)
      Use -static flag
      Standard engine #include's of errors
      Don't linewrap err string tables unless necessary
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/3392)
      52df25cf
  6. 30 11月, 2016 2 次提交
  7. 02 11月, 2016 2 次提交
  8. 18 5月, 2016 1 次提交
  9. 09 2月, 2016 1 次提交
  10. 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
  11. 12 1月, 2016 2 次提交
  12. 08 12月, 2015 2 次提交
  13. 03 12月, 2015 1 次提交
    • D
      Remove legacy sign/verify from EVP_MD. · 7f572e95
      Dr. Stephen Henson 提交于
      Remove sign/verify and required_pkey_type fields of EVP_MD: these are a
      legacy from when digests were linked to public key types. All signing is
      now handled by the corresponding EVP_PKEY_METHOD.
      
      Only allow supported digest types in RSA EVP_PKEY_METHOD: other algorithms
      already block unsupported types.
      
      Remove now obsolete EVP_dss1() and EVP_ecdsa().
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      7f572e95
  14. 10 11月, 2015 1 次提交
  15. 30 9月, 2015 1 次提交
  16. 25 9月, 2015 1 次提交
    • M
      Change ossltest engine to manually allocate cipher_data · 51a60817
      Matt Caswell 提交于
      The ossltest engine wraps the built-in implementation of aes128-cbc.
      Normally in an engine the cipher_data structure is automatically allocated
      by the EVP layer. However this relies on the engine specifying up front
      the size of that cipher_data structure. In the case of ossltest this value
      isn't available at compile time. This change makes the ossltest engine
      allocate its own cipher_data structure instead of leaving it to the EVP
      layer.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      51a60817
  17. 12 8月, 2015 2 次提交