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