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