1. 04 2月, 2000 1 次提交
  2. 24 1月, 2000 1 次提交
  3. 31 7月, 1999 1 次提交
  4. 21 6月, 1999 1 次提交
  5. 05 6月, 1999 1 次提交
  6. 20 5月, 1999 1 次提交
  7. 15 5月, 1999 1 次提交
  8. 13 5月, 1999 1 次提交
    • U
      VMS support. · 7d7d2cbc
      Ulf Möller 提交于
      Submitted by: Richard Levitte <richard@levitte.org>
      7d7d2cbc
  9. 23 4月, 1999 1 次提交
  10. 20 4月, 1999 1 次提交
  11. 18 4月, 1999 1 次提交
  12. 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
  13. 22 3月, 1999 1 次提交
  14. 08 1月, 1999 1 次提交
  15. 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
  16. 23 12月, 1998 2 次提交
  17. 22 12月, 1998 1 次提交
  18. 21 12月, 1998 3 次提交