1. 19 Apr, 1999 4 commits
  2. 18 Apr, 1999 1 commit
  3. 17 Apr, 1999 3 commits
  4. 16 Apr, 1999 1 commit
  5. 15 Apr, 1999 1 commit
    • Dr. Stephen Henson's avatar
      Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to fail · 953937bd
      Dr. Stephen Henson authored
      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
  6. 14 Apr, 1999 2 commits
  7. 13 Apr, 1999 2 commits
  8. 12 Apr, 1999 5 commits
  9. 11 Apr, 1999 1 commit
    • Bodo Möller's avatar
      · fc8ee06b
      Bodo Möller authored
      Submitted by:
      Reviewed by:
      PR:
      fc8ee06b
  10. 09 Apr, 1999 2 commits
  11. 08 Apr, 1999 1 commit
  12. 01 Apr, 1999 1 commit
  13. 31 Mar, 1999 2 commits
  14. 29 Mar, 1999 1 commit
  15. 28 Mar, 1999 3 commits
  16. 27 Mar, 1999 3 commits
  17. 25 Mar, 1999 1 commit
  18. 24 Mar, 1999 1 commit
  19. 22 Mar, 1999 3 commits
  20. 20 Mar, 1999 1 commit
  21. 14 Mar, 1999 1 commit