1. 28 1月, 2015 1 次提交
    • R
      OPENSSL_NO_xxx cleanup: SHA · 474e469b
      Rich Salz 提交于
      Remove support for SHA0 and DSS0 (they were broken), and remove
      the ability to attempt to build without SHA (it didn't work).
      For simplicity, remove the option of not building various SHA algorithms;
      you could argue that SHA_224/256/384/512 should be kept, since they're
      like crypto algorithms, but I decided to go the other way.
      So these options are gone:
      	GENUINE_DSA         OPENSSL_NO_SHA0
      	OPENSSL_NO_SHA      OPENSSL_NO_SHA1
      	OPENSSL_NO_SHA224   OPENSSL_NO_SHA256
      	OPENSSL_NO_SHA384   OPENSSL_NO_SHA512
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      474e469b
  2. 22 1月, 2015 3 次提交
  3. 15 1月, 2015 1 次提交
    • R
      Cleanup OPENSSL_NO_xxx, part 1 · 4b618848
      Rich Salz 提交于
      OPENSSL_NO_RIPEMD160, OPENSSL_NO_RIPEMD merged into OPENSSL_NO_RMD160
      OPENSSL_NO_FP_API merged into OPENSSL_NO_STDIO
      Two typo's on #endif comments fixed:
      	OPENSSL_NO_ECB fixed to OPENSSL_NO_OCB
      	OPENSSL_NO_HW_SureWare fixed to OPENSSL_NO_HW_SUREWARE
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      4b618848
  4. 06 1月, 2015 1 次提交
  5. 24 9月, 2009 1 次提交
  6. 12 11月, 2008 1 次提交
  7. 02 11月, 2008 1 次提交
  8. 18 3月, 2006 1 次提交
  9. 30 1月, 2006 1 次提交
  10. 16 7月, 2005 1 次提交
    • N
      make · 3eeaab4b
      Nils Larsch 提交于
          	./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa]
          	make depend all test
      work again
      
      PR: 1159
      3eeaab4b
  11. 09 5月, 2005 1 次提交
  12. 18 5月, 2004 1 次提交
  13. 20 4月, 2004 2 次提交
  14. 26 6月, 2003 1 次提交
  15. 15 1月, 2003 1 次提交
  16. 07 1月, 2003 1 次提交
  17. 28 11月, 2002 1 次提交
  18. 17 10月, 2002 1 次提交
  19. 12 10月, 2002 3 次提交
  20. 10 7月, 2002 1 次提交
    • L
      Reorder inclusion of header files: · 7b63c0fa
      Lutz Jänicke 提交于
      des_old.h redefines crypt:
      #define crypt(b,s)\
              DES_crypt((b),(s))
      
      This scheme leads to failure, if header files with the OS's true definition
      of crypt() are processed _after_ des_old.h was processed. This is e.g. the
      case on HP-UX with unistd.h.
      As evp.h now again includes des.h (which includes des_old.h), this problem
      only came up after this modification.
      Solution: move header files (indirectly) including e_os.h before the header
      files (indirectly) including evp.h.
      Submitted by:
      Reviewed by:
      PR:
      7b63c0fa
  21. 29 4月, 2002 1 次提交
  22. 03 4月, 2002 2 次提交
  23. 22 3月, 2002 1 次提交
  24. 14 3月, 2002 1 次提交
  25. 14 2月, 2002 1 次提交
  26. 08 2月, 2002 1 次提交
    • R
      Add aep and sureware implementations and clean up some error reasons · ba2cad19
      Richard Levitte 提交于
      that were never part of the engine framework.
      
      The aep and sureware implementations are taken directly from 0.9.6c
      [engine] and have been modified to fit the newer engine framework and
      to be possible to build shared libraries of.
      
      The aep implementation has gone through quite a bunch of tests and is
      cleaned up (there were some misunderstandings in it about how to use
      locks).
      
      The sureware hasn't been tested at all in this incarnation and is
      basically a quick hack to get it to compile properly.
      ba2cad19