aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (is_prime): Free A2. Fixed bug #423.Werner Koch2005-03-071-0/+4
|
* *** empty log message ***Werner Koch2004-03-291-0/+6
|
* * elgamal.c (gen_k): New arg SMALL_K. (sign): Use it here with SMALL_K setDavid Shaw2003-11-291-0/+7
| | | | | | to false (do_encrypt): and here with SMALL_K set to true. From Werner on devel branch.
* * POTFILES.in (cipher/primegen.c): Added.Werner Koch2003-10-101-0/+5
| | | | | | * primegen.c (gen_prime): Bail out if we try to generate a prime with less than 16 bits.
* * primegen.c (gen_prime): Bail out if NBITS is zero. This isWerner Koch2003-10-061-0/+5
| | | | | Debian bug #213989 reported by Max <[email protected]>.
* * random.c (getfnc_gather_random): Don't check NAME_OF_DEV_RANDOM twice.David Shaw2003-08-131-0/+5
| | | | | Use NAME_OF_DEV_URANDOM.
* Changed a lot of __MINGW32__ to _WIN32. This should help a bit inWerner Koch2003-07-301-0/+5
| | | | | building with native Windows compilers. On request by Brian Gladman.
* * bithelp.h, des.c, random.c, rndlinux.c, sha1.c, blowfish.c, elgamal.c,David Shaw2003-05-211-1/+10
| | | | | | | | rijndael.c, rndunix.c, sha256.c, cast5.c, idea-stub.c, rmd160.c, rndw32.c, sha512.c, md5.c, rmd160test.c, rsa.c, tiger.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
* * tiger.c: Use the U64_C macro instead of LL.David Shaw2003-05-141-0/+11
| | | | | | | | | * md.c (string_to_digest_algo): Give a warning about TIGER192 not being part of OpenPGP. * idea-stub.c (load_module): Catch an error if the idea module file is unloadable for some reason (unreadable, bad permissions, etc.)
* * sha512.c: Use the U64_C() macro rather than blindly suffixing with LL.David Shaw2003-05-091-3/+4
| | | | | | U64_C is defined in include/types.h and uses the correct suffix depending on the underlying type of u64.
* * sha512.c: Suffix all 64-bit constants with LL. Note this makes thisDavid Shaw2003-05-091-0/+6
| | | | | | file non-c89 compliant. That is okay since we have an autoconf check for this, and many c89 compilers support LL anyway.
* * cipher.c (fast_random_poll): Only use times() if we HAVE_TIMES.David Shaw2003-05-081-0/+4
|
* * md.c (md_start_debug): Need to open the file in binary mode.Werner Koch2003-04-151-0/+4
|
* * Makefile.am: Make sure sha512.c is included in the tarball.David Shaw2003-02-121-0/+2
|
* * Makefile.am, md.c (load_digest_module): Only build in SHA384/512 ifDavid Shaw2003-02-111-0/+5
| | | | | specifically enabled.
* * sha256.c, sha512.c: New.David Shaw2003-02-041-0/+7
| | | | | | * Makefile.am, algorithms.h, md.c (load_digest_module, string_to_digest_algo): Add read-only support for the new SHAs.
* added prototype that was missing in CVS since long agoStefan Bellon2002-11-061-0/+4
|
* * blowfish.c (burn_stack), cast5.c (burn_stack), des.c (burn_stack), md5.cDavid Shaw2002-11-061-0/+11
| | | | | | | | | | (burn_stack), random.c (burn_stack, read_pool, fast_random_poll), rijndael.c (burn_stack), rmd160.c (burn_stack), rndegd.c (rndegd_gather_random), rndlinux.c (rndlinux_gather_random), rndriscos.c (rndriscos_gather_random), sha1.c (burn_stack), tiger.c (burn_stack), twofish.c (burn_stack): Replace various calls to memset() with the more secure wipememory().
* * rndw32.c [__CYGWIN32__]: Don't include winioctl.h - it is notWerner Koch2002-10-211-0/+8
| | | | | | | | required anymore. * random.c (read_seed_file,update_random_seed_file): Use binary mode for __CYGWIN__.
* * rndunix.c (my_popen): Make sure that stdin and stderr areWerner Koch2002-10-121-0/+8
| | | | | | | | | | | connected to a file. This is to avoid NetBSD to complain about set{u,g}id programs invoked with fd 0, 2 closed. Reported by Cristian Biere. (start_gatherer): Likewise. Reordered code. * configure.ac (NAME_OF_DEV_URANDOM): Don't use /dev/srandom for NetBSD. Noted by Christian Biere.
* * tiger.c (tiger_get_info): Select the OID to use for TIGER at compileDavid Shaw2002-10-021-0/+5
| | | | | time.
* From devel branchDavid Shaw2002-10-011-0/+6
| | | | | | | | | 2002-09-26 Werner Koch <[email protected]> * tiger.c (tiger_get_info): Use a regular OID. Note that this breaks all TIGER generated signatures; if we want to do something about it we have to do it in ../g10/sig-check.c .
* * rndw32.c (SIZEOF_DISK_PERFORMANCE_STRUCT): Increased to 256.Werner Koch2002-09-171-0/+4
|
* typo fixes and disabled dummy cipherWerner Koch2002-09-101-2/+2
|
* * random.c: Automagically detect the entrop gatherer whenWerner Koch2002-08-301-0/+9
| | | | | | | | | configure so. * rndegd.c (rndegd_connect_socket): New. Factored out from .. (rndegd_gather_random): here and call it. (do_read): Update the counter variables correctly. This was not a problem due to the way EGD works. Bug found by Christian Biere.
* Include intl/ in the CVS again; otherwise we are not able toWerner Koch2002-08-231-0/+5
| | | | | | re-recreate a distribution from CVS. Some minor other fixes.
* * cipher.c: Include the DUMMY cipher only when the new ALLOW_DUMMYWerner Koch2002-08-121-0/+5
| | | | | is defined. It should only be defined for hard core debugging.
* * Makefile.am, md.c (load_digest_module): Allow switching TIGER on and offDavid Shaw2002-08-081-0/+5
| | | | | via configure.
* * md.c (md_algo_present): New function to check if a given algo is in useDavid Shaw2002-08-071-1/+5
| | | | | for a given MD_HANDLE.
* Removed some obsolete header files.V1-1-91Werner Koch2002-08-041-0/+5
|
* RISC OS changes because of dynload removalStefan Bellon2002-08-031-3/+1
|
* RISC OS changes due to dynload removalStefan Bellon2002-08-031-0/+8
|
* The big extension module removal.Werner Koch2002-08-031-0/+38
|
* * random.c: "warning" -> "WARNING"David Shaw2002-07-251-0/+4
|
* * rndw32.c (slow_gatherer_windowsNT): Use a simple array for theWerner Koch2002-07-241-0/+6
| | | | | | disk performance structure and increase it to the size required by W2000.
* * rndlinux.c: Removed HAVE_LINUX_RANDOM_H conditional because itWerner Koch2002-06-291-0/+6
| | | | | | was never used and the configure test did set the wrong macro anyway.
* Update head to match stable 1.0David Shaw2002-06-291-0/+902
|
* Removed files from the HEAD revision, because they are now in anotherWerner Koch2000-12-191-800/+0
| | | | | repository
* Some configuration changesWerner Koch2000-11-141-0/+14
|
* Changed keyring handling - saving still does not work.Werner Koch2000-10-101-0/+7
| | | | | Added new cipher mode and updated cipher test program.
* See ChangeLog: Wed Oct 4 13:16:18 CEST 2000 Werner KochWerner Koch2000-10-041-0/+14
|
* See ChangeLog: Mon Sep 18 16:35:45 CEST 2000 Werner KochWerner Koch2000-09-181-0/+18
|
* See ChangeLog: Mon Jul 31 10:04:47 CEST 2000 Werner KochWerner Koch2000-07-311-0/+5
|
* See ChangeLog: Tue Jul 25 17:44:15 CEST 2000 Werner KochWerner Koch2000-07-251-0/+6
|
* See ChangeLog: Mon Jul 17 16:35:47 CEST 2000 Werner KochWerner Koch2000-07-171-0/+4
|
* See ChangeLog: Fri Jul 14 19:38:23 CEST 2000 Werner KochWerner Koch2000-07-141-0/+82
|
* See ChangeLog: Fri Mar 24 11:25:45 CET 2000 Werner KochWerner Koch2000-03-241-0/+10
|
* See ChangeLog: Mon Mar 13 19:22:46 CET 2000 Werner KochWerner Koch2000-03-131-0/+4
|
* See ChangeLog: Mon Jan 31 16:37:34 CET 2000 Werner KochWerner Koch2000-01-311-0/+5
|
* See ChangeLog: Thu Jan 27 18:00:44 CET 2000 Werner KochWerner Koch2000-01-271-0/+4
|