1. 03 12月, 2000 5 次提交
  2. 02 12月, 2000 1 次提交
  3. 29 11月, 2000 3 次提交
  4. 27 11月, 2000 1 次提交
  5. 17 11月, 2000 1 次提交
  6. 07 11月, 2000 3 次提交
  7. 04 9月, 2000 1 次提交
  8. 04 8月, 2000 1 次提交
  9. 02 6月, 2000 1 次提交
    • R
      There have been a number of complaints from a number of sources that names · 26a3a48d
      Richard Levitte 提交于
      like Malloc, Realloc and especially Free conflict with already existing names
      on some operating systems or other packages.  That is reason enough to change
      the names of the OpenSSL memory allocation macros to something that has a
      better chance of being unique, like prepending them with OPENSSL_.
      
      This change includes all the name changes needed throughout all C files.
      26a3a48d
  10. 27 2月, 2000 1 次提交
  11. 05 2月, 2000 1 次提交
  12. 04 2月, 2000 1 次提交
  13. 24 1月, 2000 1 次提交
  14. 31 7月, 1999 1 次提交
  15. 21 6月, 1999 1 次提交
  16. 05 6月, 1999 1 次提交
  17. 20 5月, 1999 1 次提交
  18. 15 5月, 1999 1 次提交
  19. 13 5月, 1999 1 次提交
    • U
      VMS support. · 7d7d2cbc
      Ulf Möller 提交于
      Submitted by: Richard Levitte <richard@levitte.org>
      7d7d2cbc
  20. 23 4月, 1999 1 次提交
  21. 20 4月, 1999 1 次提交
  22. 18 4月, 1999 1 次提交
  23. 16 4月, 1999 1 次提交
    • D
      Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to fail · 953937bd
      Dr. Stephen Henson 提交于
      when they cause the destination to expand.
      
      To see how evil this is try this:
      
      #include <pem.h>
      main()
      {
      	BIGNUM *bn = NULL;
              int i;
      	bn = BN_new();
      	BN_hex2bn(&bn, "FFFFFFFF");
      	BN_add_word(bn, 1);
      	printf("Value %s\n", BN_bn2hex(bn));
      }
      
      This would typically fail before the patch.
      
      It also screws up if you comment out the BN_hex2bn line above or in any
      situation where BN_add_word() causes the number of BN_ULONGs in the result
      to change (try doubling the number of FFs).
      953937bd
  24. 22 3月, 1999 1 次提交
  25. 08 1月, 1999 1 次提交
  26. 31 12月, 1998 1 次提交
    • R
      Fix version stuff: · 9cb0969f
      Ralf S. Engelschall 提交于
      1. The already released version was 0.9.1c and not 0.9.1b
      
      2. The next release should be 0.9.2 and not 0.9.1d, because
         first the changes are already too large, second we should avoid any more
         0.9.1x confusions and third, the Apache version semantics of
         VERSION.REVISION.PATCHLEVEL for the version string is reasonable (and here
         .2 is already just a patchlevel and not major change).
      tVS: ----------------------------------------------------------------------
      9cb0969f
  27. 23 12月, 1998 2 次提交
  28. 22 12月, 1998 1 次提交
  29. 21 12月, 1998 3 次提交