Page MenuHome GnuPG
Feed Advanced Search

Aug 29 2014

werner updated subscribers of T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.
Aug 29 2014, 12:25 PM · Bug Report, libgcrypt
werner added a comment to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.

Thanks. I appreciate that you look at the code.

Aug 29 2014, 12:25 PM · Bug Report, libgcrypt
werner added a comment to T1703: Solaris 9 Sparc/gcc build fix.

Given that the code in question is preety old and this is the first problem
report on it, I hesitate to apply the patch as is. You you mind if I make it
netbsd specific?

Aug 29 2014, 12:23 PM · Bug Report, libgcrypt
werner added a comment to T1702: file descriptor warning fixes for NetBSD when set*id.

Any reason why stdin and stdout are re-opened earlier than stderr?
I would use

  if (fstat (STDIN_FILENO, &statbuf) == -1 && errno ==EBADF)
    open ("/dev/null",O_RDONLY);
  if (fstat (STDOUT_FILENO, &statbuf) == -1 && errno ==EBADF)
    open ("/dev/null",O_RDONLY);
  if (fstat (STDERR_FILENO, &statbuf) == -1 && errno ==EBADF)
    open ("/dev/null",O_RDONLY);

right after the "Stuart code" line.

Aug 29 2014, 12:16 PM · Bug Report, libgcrypt
sacrishi added a comment to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.

ok sir, i will abide by what you say.

Aug 29 2014, 12:13 PM · Bug Report, libgcrypt
sacrishi added a comment to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.

I include both of you as i noticed that you both are active code checkers in
Gcrypt, thats the only reason, anyways thanks for lookup.

Aug 29 2014, 12:11 PM · Won't Fix, Bug Report, libgcrypt
werner added a comment to T1704: SCO OpenServer build fix.

To disable the visibility feature the GCRY_USE_VISIBILITY macro is used. That
is figured out by configure and thus the place to fix it. I can't accept this
patch.

Aug 29 2014, 12:00 PM · Won't Fix, Bug Report, libgcrypt
werner claimed T1701: SP 800-90A deterministic Random Bit Generator.
Aug 29 2014, 11:43 AM · patch, libgcrypt, Feature Request
werner added a comment to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.

An no reminders after 3 days please. We are all unpaid volunteers.

Aug 29 2014, 11:42 AM · Bug Report, libgcrypt
werner placed T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623 up for grabs.
Aug 29 2014, 11:41 AM · Won't Fix, Bug Report, libgcrypt
werner added a comment to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.

Such leaks won't be fixed in an old branch. Please report only for stable and
master. Is there a reason why you always include aheinecke in the nosy list?
And please do not assign a bug to a specific person - keep it unspecified.

Aug 29 2014, 11:41 AM · Won't Fix, Bug Report, libgcrypt
sacrishi added a comment to T1707: Resource leak in file "cipher/elgamal.c" in function "elg_generate_ext" at line 644.

Reminder for bug review.

Aug 29 2014, 8:57 AM · Bug Report, libgcrypt
sacrishi added a comment to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.

Reminder for bug review.

Aug 29 2014, 8:57 AM · Bug Report, libgcrypt
sacrishi added a comment to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.

Reminder for bug review.

Aug 29 2014, 8:56 AM · Won't Fix, Bug Report, libgcrypt

Aug 28 2014

smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

On 32 bit, a problem was just discovered in the kernel development branch: see
discussion in https://lkml.org/lkml/2014/8/26/59.

The base line is that the bit shift in drbg_max_addtl and drbg_max_requests are
stored in a size_t which is 32 bit on 32 bit machines. Yet, the bit shift is
larger than 32 bit. It will be fixed in the next installment of the patch.

Aug 28 2014, 9:36 AM · patch, libgcrypt, Feature Request

Aug 27 2014

sacrishi updated subscribers of T1707: Resource leak in file "cipher/elgamal.c" in function "elg_generate_ext" at line 644.
Aug 27 2014, 11:52 AM · Bug Report, libgcrypt
sacrishi added projects to T1707: Resource leak in file "cipher/elgamal.c" in function "elg_generate_ext" at line 644: libgcrypt, Bug Report.
Aug 27 2014, 11:52 AM · Bug Report, libgcrypt
sacrishi renamed T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623 from Resource leak in file "cipher/pubkey.c" in function "gcry_pk_genkey" at line 3623 to Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.
Aug 27 2014, 10:53 AM · Won't Fix, Bug Report, libgcrypt
sacrishi added a comment to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.

D243: 480_pubkey.patch

Aug 27 2014, 10:53 AM · Won't Fix, Bug Report, libgcrypt
sacrishi added a comment to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.

File: cipher/pubkey.c

Bug No. : 1


Function: gcry_pk_encrypt
Line of error: 2879

Resource leak occurs as variable "data" with assigned memory is not freed
before going out of scope , which causes memory leak.

Libgcrypt version 1.5.4 code:

  rc = sexp_data_to_mpi (s_data, &data, &ctx);
  if (rc)
    goto leave;

-> here when the code flow jumps to leave,"data" goes out of scope ,which
despite of being allocated memory is not freed before going out of scope.

Recommended Code:

rc = sexp_data_to_mpi (s_data, &data, &ctx);
if (rc)

    {
      mpi_free (data);
      data = NULL;
      goto leave;
    }

Here it is ensured that "data" is freed ,preventing any chances of leak

Bug No. : 2


Function: gcry_pk_genkey
Line of error: 3623

Resource leak occurs as variable "string" with assigned memory is not freed
before going out of scope , which causes memory leak.

Libgcrypt version 1.5.4 code:

   if (!arg_list)
        {
          rc = gpg_err_code_from_syserror ();
          goto leave;
        }

-> here when the code flow jumps to leave,"string" goes out of scope ,which
despite of being allocated memory is not freed before going out of scope.

Recommended Code:

if (!arg_list)

{
  rc = gpg_err_code_from_syserror ();
  gcry_free (string)
  goto leave;
}

I am attaching a patch for the above raised bugs.

Aug 27 2014, 10:53 AM · Won't Fix, Bug Report, libgcrypt
sacrishi added projects to T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623: libgcrypt, Bug Report.
Aug 27 2014, 6:37 AM · Won't Fix, Bug Report, libgcrypt
sacrishi set Version to 1.5.4 on T1706: Resource leak in file "cipher/pubkey.c" in function "gcry_pk_encrypt" at line 2876 and "gcry_pk_genkey" at line 3623.
Aug 27 2014, 6:37 AM · Won't Fix, Bug Report, libgcrypt

Aug 26 2014

sacrishi added a comment to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.

D241: 478_primegen.patch

Aug 26 2014, 9:35 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221.
Aug 26 2014, 9:35 AM · Bug Report, libgcrypt
sacrishi assigned T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221 to werner.
Aug 26 2014, 9:35 AM · Bug Report, libgcrypt
sacrishi added projects to T1705: Resource leak in file "cipher/primegen.c" at line 676 , 1215 and at 1221: libgcrypt, Bug Report.
Aug 26 2014, 9:28 AM · Bug Report, libgcrypt

Aug 22 2014

smueller_chronox.de updated subscribers of T1701: SP 800-90A deterministic Random Bit Generator.
Aug 22 2014, 12:42 PM · patch, libgcrypt, Feature Request

Aug 21 2014

wiz set Version to 1.6.2 on T1704: SCO OpenServer build fix.
Aug 21 2014, 9:54 PM · Won't Fix, Bug Report, libgcrypt
wiz added projects to T1704: SCO OpenServer build fix: libgcrypt, Bug Report.
Aug 21 2014, 9:54 PM · Won't Fix, Bug Report, libgcrypt
wiz added projects to T1703: Solaris 9 Sparc/gcc build fix: libgcrypt, Bug Report.
Aug 21 2014, 9:50 PM · Bug Report, libgcrypt
wiz set Version to 1.6.2 on T1702: file descriptor warning fixes for NetBSD when set*id.
Aug 21 2014, 9:46 PM · Bug Report, libgcrypt
wiz added a comment to T1702: file descriptor warning fixes for NetBSD when set*id.

D238: 474_patch-ab

Aug 21 2014, 9:46 PM · Bug Report, libgcrypt
wiz added projects to T1702: file descriptor warning fixes for NetBSD when set*id: libgcrypt, Bug Report.
Aug 21 2014, 9:46 PM · Bug Report, libgcrypt
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D231: 473_v7-0007-User-interface-to-DRBG.patch

Aug 21 2014, 9:45 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D232: 472_v7-0006-DRBG-specific-gcry_control-requests.patch

Aug 21 2014, 9:45 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D233: 471_v7-0005-Function-definitions-for-gcry_control-callbacks.patch

Aug 21 2014, 9:44 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D234: 470_v7-0004-Invoke-DRBG-from-common-libgcrypt-RNG-code.patch

Aug 21 2014, 9:44 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D235: 469_v7-0003-Function-definitions-of-interfaces-for-random.c.patch

Aug 21 2014, 9:44 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D236: 468_v7-0001-SP800-90A-Deterministic-Random-Bit-Generator.patch

Aug 21 2014, 9:44 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added a comment to T1701: SP 800-90A deterministic Random Bit Generator.

D237: 467_v7-0002-Compile-DRBG.patch

Aug 21 2014, 9:43 PM · patch, libgcrypt, Feature Request
smueller_chronox.de added projects to T1701: SP 800-90A deterministic Random Bit Generator: Feature Request, libgcrypt.
Aug 21 2014, 9:43 PM · patch, libgcrypt, Feature Request
werner changed Version from 1.6.1 to 1.7 on T1682: whirlpool amd64 assembly.
Aug 21 2014, 2:56 PM · Won't Fix, libgcrypt, Feature Request
werner added a comment to T1682: whirlpool amd64 assembly.

To go into master.

Aug 21 2014, 2:56 PM · Won't Fix, libgcrypt, Feature Request
werner added a comment to T1682: whirlpool amd64 assembly.

Please send a DCO to gcrypt-devel and ask for a review of the code.

Aug 21 2014, 2:56 PM · Won't Fix, libgcrypt, Feature Request
werner closed T1668: libgcrypt build on freebsd 10.0-amd64 fails, cast5-amd64.S not linked to build as Resolved.
Aug 21 2014, 2:55 PM · FreeBSD, Bug Report, libgcrypt
werner added a comment to T1631: configure option mispelled in help message --enable-kfds should be --enable-kdfs.

fixed. Thanks.

Aug 21 2014, 2:54 PM · Bug Report, libgcrypt
werner closed T1631: configure option mispelled in help message --enable-kfds should be --enable-kdfs as Resolved.
Aug 21 2014, 2:54 PM · Bug Report, libgcrypt
werner closed T1651: libgcrypt-git prevents encrypted LUKS/LVM to boot as Resolved.
Aug 21 2014, 2:51 PM · Info Needed, Bug Report, libgcrypt
werner closed T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071 as Resolved.
Aug 21 2014, 2:15 PM · Bug Report, libgcrypt
werner reopened T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071 as "Open".
Aug 21 2014, 2:14 PM · Bug Report, libgcrypt
werner added a comment to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.

Done for master and 1.6.

Aug 21 2014, 2:14 PM · Bug Report, libgcrypt
werner added a comment to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.

Okay, but probaly only in master.

Aug 21 2014, 12:54 PM · Bug Report, libgcrypt
werner closed T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071 as Resolved.
Aug 21 2014, 12:54 PM · Bug Report, libgcrypt
werner closed T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387 as Resolved.
Aug 21 2014, 12:53 PM · Bug Report, libgcrypt
werner removed a project from T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387: Restricted Project.
Aug 21 2014, 12:53 PM · Bug Report, libgcrypt
werner removed a project from T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267: In Progress.
Aug 21 2014, 12:53 PM · Bug Report, libgcrypt
werner added a comment to T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.

ported to 1.6.

Aug 21 2014, 12:53 PM · Bug Report, libgcrypt
werner closed T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267 as Resolved.
Aug 21 2014, 12:53 PM · Bug Report, libgcrypt
sacrishi added a comment to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.

Yes you may , as it would be quite helpful in further vigilance :)

Aug 21 2014, 12:22 PM · Bug Report, libgcrypt
werner added a comment to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.

This is a false positive of your scanner. BUFFER may very well be NULL if the
caller used NULL for the buffer arg (which is the format string). Using NULL
for the format is not defined (cf. printf).

The condition testing BUFFER before calling is merely a general failsafe pattern
of a commly used code snippet.

If it helps you scanner to avoid such fails positive I can do an explicit check
for buffer being NULL. Shall I do that?

Aug 21 2014, 12:10 PM · Bug Report, libgcrypt
werner added a project to T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267: In Progress.
Aug 21 2014, 11:47 AM · Bug Report, libgcrypt
werner added a comment to T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.

Fixed in master. Will be ported to 1.6.

Aug 21 2014, 11:47 AM · Bug Report, libgcrypt
werner added a project to T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387: Restricted Project.
Aug 21 2014, 11:39 AM · Bug Report, libgcrypt
werner added a comment to T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387.

Fixed in master.

Aug 21 2014, 11:39 AM · Bug Report, libgcrypt
werner added a project to T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320: Duplicate.
Aug 21 2014, 11:32 AM · Duplicate, Bug Report, libgcrypt
werner added a comment to T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320.

Fixed with 1700

Aug 21 2014, 11:32 AM · Duplicate, Bug Report, libgcrypt
werner closed T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320 as Resolved.
Aug 21 2014, 11:32 AM · Duplicate, Bug Report, libgcrypt
werner added a comment to T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320.

Duplicate of T1700

Aug 21 2014, 11:32 AM · Duplicate, Bug Report, libgcrypt
werner added a comment to T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387.

Thanks for looking at this. However, please do not file separate bug reports
for similar problems. This is just too much overhead. Frankly, I 'd would
appreciate that such audit results are send to the mailing list.

The suggested fix is not suitable because this function or its callers returns
an error code and should just do this. An assert is only to be used to make
sure that nothing unexpected happens. You have shown that this may indeed
happen (by using wrong call args or a malloc failure) and thus this needs more
work. Given that such NULL dereference are not a critical security problems,
this won't be fixed for old Libgcrypt versions as 1.5. Instead I will apply a
fix to master (1.7) and backport it to stable (1.6).

Aug 21 2014, 11:11 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.
Aug 21 2014, 10:40 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320.
Aug 21 2014, 10:40 AM · Duplicate, Bug Report, libgcrypt
sacrishi updated subscribers of T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.
Aug 21 2014, 10:39 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387.
Aug 21 2014, 10:39 AM · Bug Report, libgcrypt
sacrishi assigned T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267 to werner.
Aug 21 2014, 10:37 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.
Aug 21 2014, 10:37 AM · Bug Report, libgcrypt
sacrishi updated subscribers of T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387.
Aug 21 2014, 8:36 AM · Bug Report, libgcrypt
sacrishi added a comment to T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387.

D215: 464_elgamal.patch

Aug 21 2014, 8:36 AM · Bug Report, libgcrypt
sacrishi added projects to T1700: A NULL pointer may be dereferenced in file "cipher/elgamal.c" inside function "generate_using_x" on line 387: libgcrypt, Bug Report.
Aug 21 2014, 8:36 AM · Bug Report, libgcrypt
sacrishi added a comment to T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320.

D214: 463_dsa.patch

Aug 21 2014, 8:23 AM · Duplicate, Bug Report, libgcrypt
sacrishi added projects to T1699: A NULL pointer may be dereferenced in file "cipher/dsa.c" inside function "generate " on line 320: libgcrypt, Bug Report.
Aug 21 2014, 8:23 AM · Duplicate, Bug Report, libgcrypt
sacrishi updated subscribers of T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.
Aug 21 2014, 7:44 AM · Bug Report, libgcrypt
sacrishi set Version to 1.5.4 on T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.
Aug 21 2014, 7:44 AM · Bug Report, libgcrypt
sacrishi added a comment to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071.

D213: 462_sexp.patch

Aug 21 2014, 7:44 AM · Bug Report, libgcrypt
sacrishi added projects to T1698: Dereferencing of a NULL pointer may occur in file "src/sexp.c" in function "vsexp_sscan" inside the for loop on line 1071: libgcrypt, Bug Report.
Aug 21 2014, 7:44 AM · Bug Report, libgcrypt

Aug 20 2014

werner added a comment to T1696: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.

Updated by 1697.

Aug 20 2014, 2:39 PM · Bug Report, libgcrypt, Mistaken
werner closed T1696: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267 as Resolved.
Aug 20 2014, 2:39 PM · Bug Report, libgcrypt, Mistaken
werner added a project to T1696: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267: Mistaken.
Aug 20 2014, 2:39 PM · Bug Report, libgcrypt, Mistaken
sacrishi added projects to T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267: libgcrypt, Bug Report.
Aug 20 2014, 2:28 PM · Bug Report, libgcrypt
sacrishi set Version to 1.5.4 on T1697: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.
Aug 20 2014, 2:28 PM · Bug Report, libgcrypt
sacrishi set Version to 1.5.4 on T1696: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267.
Aug 20 2014, 2:25 PM · Bug Report, libgcrypt, Mistaken
sacrishi added projects to T1696: Wrong if conditional check may lead to dereferencing of a NULL pointer in file cipher/md.c on line 1267: libgcrypt, Bug Report.
Aug 20 2014, 2:25 PM · Bug Report, libgcrypt, Mistaken

Aug 10 2014

metaschima added projects to T1682: whirlpool amd64 assembly: Feature Request, libgcrypt.
Aug 10 2014, 3:47 AM · Won't Fix, libgcrypt, Feature Request
metaschima set Version to 1.6.1 on T1682: whirlpool amd64 assembly.
Aug 10 2014, 3:47 AM · Won't Fix, libgcrypt, Feature Request

Aug 5 2014

werner reopened T1668: libgcrypt build on freebsd 10.0-amd64 fails, cast5-amd64.S not linked to build as "Open".
Aug 5 2014, 4:16 PM · FreeBSD, Bug Report, libgcrypt
werner added a comment to T1668: libgcrypt build on freebsd 10.0-amd64 fails, cast5-amd64.S not linked to build.

FWIW, I checked my POSIX 2001 standard and it does not define -p. The
GNU manual for uname however has to say:

`-m'
`--machine'

     Print the machine hardware name (sometimes called the hardware
     class or hardware type).

`-p'
`--processor'

Print the processor type (sometimes called the instruction set
architecture or ISA).  Print `unknown' if the kernel does not make
this information easily available, as is the case with Linux
kernels.
Aug 5 2014, 4:16 PM · FreeBSD, Bug Report, libgcrypt
werner added a comment to T1676: libgcrypt segfaults on x32 ABI.

Fix has been pushed for 1.6 and master. Thanks,

Aug 5 2014, 3:15 PM · Bug Report, libgcrypt
werner added a project to T1676: libgcrypt segfaults on x32 ABI: Restricted Project.
Aug 5 2014, 3:15 PM · Bug Report, libgcrypt
werner added a project to T1616: libgcrypt 1.6.0 incorrectly determines CPU on PowerPC Mac: Restricted Project.
Aug 5 2014, 12:29 PM · Bug Report, libgcrypt
werner added a comment to T1616: libgcrypt 1.6.0 incorrectly determines CPU on PowerPC Mac.

Thanks for that good description. Fixes pushed to master and 1.6. I can't test
it, though.

Aug 5 2014, 12:29 PM · Bug Report, libgcrypt

Aug 4 2014

werner closed T1668: libgcrypt build on freebsd 10.0-amd64 fails, cast5-amd64.S not linked to build as Resolved.
Aug 4 2014, 3:25 PM · FreeBSD, Bug Report, libgcrypt