1. 16 Apr, 1999 1 commit
  2. 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
  3. 14 Apr, 1999 2 commits
  4. 13 Apr, 1999 2 commits
  5. 12 Apr, 1999 5 commits
  6. 11 Apr, 1999 1 commit
    • Bodo Möller's avatar
      · fc8ee06b
      Bodo Möller authored
      Submitted by:
      Reviewed by:
      PR:
      fc8ee06b
  7. 09 Apr, 1999 2 commits
  8. 08 Apr, 1999 1 commit
  9. 01 Apr, 1999 1 commit
  10. 31 Mar, 1999 2 commits
  11. 29 Mar, 1999 1 commit
  12. 28 Mar, 1999 3 commits
  13. 27 Mar, 1999 3 commits
  14. 25 Mar, 1999 1 commit
  15. 24 Mar, 1999 1 commit
  16. 22 Mar, 1999 3 commits
  17. 20 Mar, 1999 1 commit
  18. 14 Mar, 1999 1 commit
  19. 12 Mar, 1999 4 commits
  20. 11 Mar, 1999 1 commit
  21. 10 Mar, 1999 3 commits