1. 01 May, 1999 2 commits
  2. 30 Apr, 1999 1 commit
  3. 29 Apr, 1999 3 commits
  4. 28 Apr, 1999 3 commits
  5. 27 Apr, 1999 2 commits
  6. 26 Apr, 1999 2 commits
  7. 24 Apr, 1999 4 commits
  8. 23 Apr, 1999 2 commits
    • Bodo Möller's avatar
      · 018b4ee9
      Bodo Möller authored
      Submitted by:
      Reviewed by:
      PR:
      018b4ee9
    • Bodo Möller's avatar
      · 92df9607
      Bodo Möller authored
      Submitted by:
      Reviewed by:
      PR:
      92df9607
  9. 22 Apr, 1999 2 commits
  10. 21 Apr, 1999 4 commits
  11. 20 Apr, 1999 2 commits
  12. 19 Apr, 1999 5 commits
  13. 18 Apr, 1999 1 commit
  14. 17 Apr, 1999 3 commits
  15. 16 Apr, 1999 1 commit
  16. 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
  17. 14 Apr, 1999 2 commits