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