1. 24 Apr, 1999 2 commits
    • Dr. Stephen Henson's avatar
      Delete the unnecessary ERR and ERRC lines in makefiles, add some functionality · 6e781e8e
      Dr. Stephen Henson authored
      to error code script: it can now find untranslatable function codes (usually
      because the function is static and not defined in a header: occasionally because
      of a typo...) and unreferenced function and reason codes. To see this try:
      perl util/mkerr.pl -recurse -debug
      Also fixed some typos in crypto/pkcs12 that this found :-)
      Also tidy up some error calls that had to be all on one line: the old error
      script couldn't find codes unless the call was all on one line.
      6e781e8e
    • Dr. Stephen Henson's avatar
      Complete rewrite of the error code generation script. It now runs as a single · 6d311938
      Dr. Stephen Henson authored
      script, translates function codes better and doesn't need the K&R function
      prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are
      still needed by the DEF generator...). I also ran the script with the -rewrite
      option to update all the header and source files.
      6d311938
  2. 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
  3. 22 Apr, 1999 2 commits
  4. 21 Apr, 1999 4 commits
  5. 20 Apr, 1999 2 commits
  6. 19 Apr, 1999 5 commits
  7. 18 Apr, 1999 1 commit
  8. 17 Apr, 1999 3 commits
  9. 16 Apr, 1999 1 commit
  10. 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
  11. 14 Apr, 1999 2 commits
  12. 13 Apr, 1999 2 commits
  13. 12 Apr, 1999 5 commits
  14. 11 Apr, 1999 1 commit
    • Bodo Möller's avatar
      · fc8ee06b
      Bodo Möller authored
      Submitted by:
      Reviewed by:
      PR:
      fc8ee06b
  15. 09 Apr, 1999 2 commits
  16. 08 Apr, 1999 1 commit
  17. 01 Apr, 1999 1 commit
  18. 31 Mar, 1999 2 commits
  19. 29 Mar, 1999 1 commit