1. 17 5月, 2005 1 次提交
  2. 16 5月, 2005 2 次提交
  3. 27 4月, 2005 1 次提交
  4. 14 4月, 2005 1 次提交
  5. 11 4月, 2005 1 次提交
  6. 30 3月, 2005 1 次提交
  7. 06 2月, 2005 1 次提交
  8. 14 12月, 2004 1 次提交
  9. 03 11月, 2004 1 次提交
  10. 01 11月, 2004 1 次提交
  11. 30 8月, 2004 1 次提交
  12. 02 8月, 2004 2 次提交
  13. 18 5月, 2004 2 次提交
  14. 20 4月, 2004 1 次提交
  15. 29 3月, 2004 1 次提交
    • A
      This is essentially Intel 32-bit compiler tune-up. To start with all · 1a979201
      Andy Polyakov 提交于
      available compiler versions generated bogus machine code trying to
      compile new crypto/des/cfb_enc.c. Secondly, 8th version defines
      __GNUC__ macro, but fails to compile *some* inline assembler correctly.
      Note that all versions of icc implement MSC-like _lrot[rl] intrinsic,
      which is used now instead of offensive asm. Finally, unnecessary linker
      dependencies are eliminated. Most notably dependency from libirc.a
      caused trouble at application start-up, if libcrypto.so is linked with
      -Bsymbolic (which it is).
      1a979201
  16. 11 2月, 2004 1 次提交
  17. 29 1月, 2004 2 次提交
  18. 28 1月, 2004 2 次提交
  19. 27 12月, 2003 2 次提交
  20. 28 11月, 2003 1 次提交
  21. 16 11月, 2003 1 次提交
  22. 30 10月, 2003 1 次提交
    • G
      A general spring-cleaning (in autumn) to fix up signed/unsigned warnings. · 27545970
      Geoff Thorpe 提交于
      I have tried to convert 'len' type variable declarations to unsigned as a
      means to address these warnings when appropriate, but when in doubt I have
      used casts in the comparisons instead. The better solution (that would get
      us all lynched by API users) would be to go through and convert all the
      function prototypes and structure definitions to use unsigned variables
      except when signed is necessary. The proliferation of (signed) "int" for
      strictly non-negative uses is unfortunate.
      27545970
  23. 29 10月, 2003 1 次提交
  24. 06 10月, 2003 1 次提交
    • R
      Make sure int SSL_COMP_add_compression_method() checks if a certain · 82423549
      Richard Levitte 提交于
      compression identity is already present among the registered
      compression methods, and if so, reject the addition request.
      
      Declare SSL_COMP_get_compression_method() so it can be used properly.
      
      Change ssltest.c so it checks what compression methods are available
      and enumerates them.  As a side-effect, built-in compression methods
      will be automagically loaded that way.  Additionally, change the
      identities for ZLIB and RLE to be conformant to
      draft-ietf-tls-compression-05.txt.
      
      Finally, make update.
      
      Next on my list: have the built-in compression methods added
      "automatically" instead of requiring that the author call
      SSL_COMP_add_compression_method() or
      SSL_COMP_get_compression_methods().
      82423549
  25. 02 10月, 2003 1 次提交
  26. 30 5月, 2003 1 次提交
    • R
      PR: 630 · f7f8d82a
      Richard Levitte 提交于
      Avoid looking outside the key_data array.
      f7f8d82a
  27. 21 3月, 2003 1 次提交
  28. 13 2月, 2003 2 次提交
  29. 17 1月, 2003 1 次提交
  30. 09 1月, 2003 1 次提交
    • R
      gcc wants character constants to be correct. Before this change, the · 416b19c6
      Richard Levitte 提交于
      following would happen on Solaris:
      
        m4 -B 8192 asm/des_enc.m4 > asm/des_enc-sparc.S
        gcc -DOPENSSL_SYSNAME_ULTRASPARC -DOPENSSL_NO_STATIC_ENGINE -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_KRB5 -m32 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W -DMD5_ASM   -c -o asm/des_enc-sparc.o asm/des_enc-sparc.S
        asm/des_enc-sparc.S:2007: unterminated character constant
        asm/des_enc-sparc.S:2008: unterminated character constant
      416b19c6
  31. 04 1月, 2003 3 次提交