| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
This is achieved by passing the define DOTLOCK_USE_PTHREAD.
|
|
|
|
| |
This allows us to extend this function in the future.
|
| |
|
|
|
|
|
|
|
| |
- It is now more portable and may be used outside of GnuPG
- vfat file systems are now supported.
- The use of link(2) is more robust.
- Wrote extensive documentation.
|
|
|
|
|
| |
This is not anymore required because we require Libgcrypt 1.5.0 which
features this function.
|
|
|
|
| |
Also cleaned up the dotlock code for easier readability.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[spotted by coverity]
This is only in tests/, but easy to fix, so...
I've included extra context so you can see how var->value would
be used in the following atoi call.
>From cf9ae83fd2da8d7a289b048ef0feed4096f6d263 Mon Sep 17 00:00:00 2001
From: Jim Meyering <[email protected]>
Date: Tue, 20 Sep 2011 16:32:59 +0200
Subject: [PATCH] avoid use of free'd pointer
* asschk.c (set_type_var): Set var->value to NULL after freeing it,
to avoid subsequent use of freed pointer.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this patch, pk2 would be freed twice.
>From 2a18a4b757e0896e738fefbbaa8ff8c23a9edf89 Mon Sep 17 00:00:00 2001
From: Jim Meyering <[email protected]>
Date: Tue, 20 Sep 2011 16:20:39 +0200
Subject: [PATCH] avoid use of freed pointer
If we free pk2 at the top of the for-loop, set it to NULL
so that we don't free it again just before returning.
* revoke.c (gen_desig_revoke): Don't use pk2 after freeing it.
|
|
|
|
|
| |
This is to allow building with Libgcrypt master (1.6) which has some
cleanups in the API/ABI.
|
|
|
|
|
| |
When the inquired passphrase has a 0 length then treat it as no
protection.
|
| |
|
|
|
|
|
| |
Fixed lost hash sign introduced by previous change (2011-04-08).
Reported by John Marshall.
|
|
|
|
|
|
| |
When this mode is set an inquire will be sent to the client to retrieve
the passphrase. This adds a new inquire keyword "NEW_PASSPHRASE" that the
GENKEY and PASSWD commands use when generating a new key.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
The option would previously return an error if its value was < 65536.
|
|
|
|
|
| |
This requires that GnuPG is build with a newer version of Libassuan
(2.0.3).
|
| |
|
| |
|
|
|
|
|
| |
This is only a warning and gpg would anyway print an error message if
it tries to write to the trustdb.
|
| |
|
|
|
|
|
| |
Need to send the CANCEL command back to scdaemon otherwise the next SCD
command will fail.
|
|
|
|
|
| |
This bug was found by n-roeser at gmx.net
(gnupg-devel@, msgid [email protected]).
|
|
|
|
|
|
|
|
|
| |
This should always work because the dirmngr asked us to validate the
given certificate. This should make OCSP configuration easier because
there is less requirement to install all certificates for Dirmngr and
gpgsm.
CAUTION: This code has not yet been tested.
|
| |
|
|
|
|
|
| |
This implements the suggestion from bug#1349. With this change the
fingerprint of the ssh key is also displayed in the pinentry prompts.
|
| |
|
|
|
|
| |
Fixes bug#1355.
|
|
|
|
| |
Fixes bug#1354.
|
| |
|
|
|
|
| |
When unset or 0, the calibrated count will be used.
|
| |
|
|
|
|
|
|
|
|
| |
[[PGP Signed Part:Undecided]]
[1. text/plain]
Example path for com-certs.pem corrected.
[2. text/x-diff; doc.diff]
|
|
|
|
| |
... and the answer of course.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch implementes a chunk mode to pass the key parameters from
scdaemon to gpg. This allows to pass arbitrary long key paremeters;
it is used for keys larger than 3072 bit.
Note: the card key generation in gpg is currently broken. The keys
are generated but it is not possible to create the self-signature
because at that time the gpg-agent does not yet know about the new
keys and thus can't divert the sign request to the card. We either
need to run the learn command right after calling agent_scd_genkey or
implement a way to sign using the currently inserted card. Another
option would be to get rid of agent_scd_genkey and implement the
feature directly in agent_genkey.
|
| |
|
|
|
|
|
| |
To avoid this in the future, everyone should really use the clean-po
filter as installed with ./autogen.sh . Thanks.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| |
| |
| |
| |
| | |
This allows to remove some error code substitutes.
Fixed a typo in gpg.text.
|