1. 22 4月, 1999 3 次提交
  2. 21 4月, 1999 6 次提交
  3. 20 4月, 1999 10 次提交
  4. 19 4月, 1999 10 次提交
  5. 18 4月, 1999 4 次提交
  6. 17 4月, 1999 4 次提交
  7. 16 4月, 1999 3 次提交
    • U
      Another bug. · ddb25f88
      Ulf Möller 提交于
      ddb25f88
    • U
      Write random seed file in binary mode. · 2fef6785
      Ulf Möller 提交于
      Submitted by: Richard Levitte <levitte@stacken.kth.se>
      2fef6785
    • D
      Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to fail · 953937bd
      Dr. Stephen Henson 提交于
      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