1. 17 Mar, 2004 2 commits
  2. 08 Mar, 2004 1 commit
  3. 08 Feb, 2004 1 commit
  4. 29 Jan, 2004 1 commit
  5. 23 Jan, 2004 1 commit
  6. 21 Jan, 2004 4 commits
  7. 19 Jan, 2004 2 commits
  8. 10 Jan, 2004 1 commit
    • Richard Levitte's avatar
      Adding a slash between the directoryt and the file is a problem with · af6dab9b
      Richard Levitte authored
      VMS.  The C RTL can handle it well if the "directory" is a logical
      name with no colon, therefore ending being 'logname/file'.  However,
      if the given logical names actually has a colon, or if you use a full
      VMS-syntax directory, you end up with 'logname:/file' or
      'dev:[dir1.dir2]/file', and that isn't handled in any good way.
      
      So, on VMS, we need to check if the directory string ends with a
      separator (one of ':', ']' or '>' (< and > can be used instead [ and
      ])), and handle that by not inserting anything between the directory
      spec and the file name.  In all other cases, it's assumed the
      directory spec is a logical name, so we need to place a colon between
      it and the file.
      
      Notified by Kevin Greaney <kevin.greaney@hp.com>.
      af6dab9b
  9. 08 Jan, 2004 2 commits
  10. 04 Jan, 2004 3 commits
  11. 27 Dec, 2003 10 commits
  12. 20 Dec, 2003 1 commit
  13. 11 Dec, 2003 1 commit
  14. 10 Dec, 2003 2 commits
  15. 06 Dec, 2003 3 commits
  16. 03 Dec, 2003 1 commit
  17. 02 Dec, 2003 3 commits
    • Geoff Thorpe's avatar
      Incremental cleanups to bn_lib.c. · 2bfd2c74
      Geoff Thorpe authored
      - Add missing bn_check_top() calls and relocate some others
      - Use BN_is_zero() where appropriate
      - Remove assert()s that bn_check_top() is already covering
      - Simplify the code in places (esp. bn_expand2())
      - Only keep ambiguous zero handling if BN_STRICT isn't defined
      - Remove some white-space and make some other aesthetic tweaks
      2bfd2c74
    • Geoff Thorpe's avatar
      Use the BN_is_odd() macro in place of code that (inconsistently) does much · 82b2f57e
      Geoff Thorpe authored
      the same thing.
      
      Also, I have some stuff on the back-burner related to some BN_CTX notes
      from Peter Gutmann about his cryptlib hacks to the bignum code. The BN_CTX
      comments are there to remind me of some relevant points in the code.
      82b2f57e
    • Geoff Thorpe's avatar
      BN_FLG_FREE is of extremely dubious usefulness, and is only referred to · 2ae1ea37
      Geoff Thorpe authored
      once in the source (where it is set for the benefit of no other code
      whatsoever). I've deprecated the declaration in the header and likewise
      made the use of the flag conditional in bn_lib.c. Note, this change also
      NULLs the 'd' pointer in a BIGNUM when it is reset but not deallocated.
      2ae1ea37
  18. 01 Dec, 2003 1 commit