1. 10 5月, 1999 1 次提交
    • B
      The various character predicates (isspace and the like) may not be · 84a370a4
      Bodo Möller 提交于
      used with negative char values, so I've added casts to unsigned char.
      Maybe what really should be done is change all those arrays and
      pointers to type unsigned char [] or unsigned char *, respectively;
      but using plain char with those predicates is just wrong, so something
      had to be done.
      Submitted by:
      Reviewed by:
      PR:
      84a370a4
  2. 08 5月, 1999 1 次提交
  3. 06 5月, 1999 1 次提交
  4. 05 5月, 1999 4 次提交
  5. 30 4月, 1999 3 次提交
  6. 29 4月, 1999 2 次提交
  7. 27 4月, 1999 3 次提交
  8. 25 4月, 1999 2 次提交
  9. 24 4月, 1999 7 次提交
  10. 23 4月, 1999 2 次提交
  11. 22 4月, 1999 1 次提交
  12. 20 4月, 1999 1 次提交
  13. 19 4月, 1999 2 次提交
  14. 18 4月, 1999 1 次提交
  15. 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
  16. 06 4月, 1999 1 次提交
  17. 01 4月, 1999 1 次提交
  18. 27 3月, 1999 1 次提交
  19. 22 3月, 1999 1 次提交
  20. 09 3月, 1999 1 次提交
  21. 06 3月, 1999 2 次提交
  22. 27 2月, 1999 1 次提交