From 42dd39666e32124265132c49843d77f34aaa1943 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 6 Jun 2018 19:47:20 -0300 Subject: Fix passphrase entry at genpairs when exporting secret keys; fix ChangeLog dates --- ChangeLog | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 6487c06..1d0b4e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2017-11-23 - 0.5.3 - Silvio Rhatto +2010-06-06 - unreleased - Silvio Rhatto + + Fix passphrase entry at genpairs when exporting secret keys + +2018-05-30 - 0.5.3 - Silvio Rhatto Grégoire Jadi Jérémie Courrèges-Anglas -- cgit v1.2.3 From 7fbe371049472b766fd2ee3306072c9c4e0aaf07 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 16 Jun 2018 21:23:35 -0300 Subject: Adds history support at shell action --- ChangeLog | 4 +++- lib/keyringer/actions/shell | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1d0b4e6..1672236 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -2010-06-06 - unreleased - Silvio Rhatto +2010-06-16 - unreleased - Silvio Rhatto + + Adds history support at shell action Fix passphrase entry at genpairs when exporting secret keys diff --git a/lib/keyringer/actions/shell b/lib/keyringer/actions/shell index 3b98d68..d87a638 100755 --- a/lib/keyringer/actions/shell +++ b/lib/keyringer/actions/shell @@ -15,6 +15,8 @@ keyringer_usage $KEYRING # While a "quit" command isn't entered, read STDIN while read -rep "keyringer:/${KEYRING}${SHELLPATH}> " STDIN; do + history -s "$STDIN" + if [ "$STDIN" == "quit" ] || [ "$STDIN" == "exit" ] || [ "$STDIN" == "bye" ]; then break elif [ "$STDIN" == "shell" ]; then -- cgit v1.2.3 From 837fd478778087527b808e8538a5b0f40a88f9e0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 17 Oct 2018 14:51:01 -0300 Subject: Fixes BASEDIR evaluation at init action --- ChangeLog | 4 +++- keyringer | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1672236..e63baa8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -2010-06-16 - unreleased - Silvio Rhatto +2018-10-17 - unreleased - Silvio Rhatto + + Fixes BASEDIR evaluation at init action Adds history support at shell action diff --git a/keyringer b/keyringer index 41b34ff..6b33c6c 100755 --- a/keyringer +++ b/keyringer @@ -93,7 +93,7 @@ function keyringer_init { fi # Reparse basedir to force absolute folder - BASEDIR="`cd $BASEDIR && pwd`" + BASEDIR="`cd $BASEDIR &> /dev/null && pwd`" # Add entry chmod 700 "$BASEDIR" -- cgit v1.2.3 From 0503cd47d8648fcd70edc57c0d7e25c9c4bc73b0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 24 Jan 2019 18:31:50 -0200 Subject: Use --no-encrypt-to GnuPG option to strictly respect the recipients file --- ChangeLog | 4 +++- lib/keyringer/functions | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index e63baa8..3f6ccfc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -2018-10-17 - unreleased - Silvio Rhatto +2019-01-29 - unreleased - Silvio Rhatto + + Use --no-encrypt-to GnuPG option to strictly respect the recipients file Fixes BASEDIR evaluation at init action diff --git a/lib/keyringer/functions b/lib/keyringer/functions index d529daf..308d0ea 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -314,9 +314,9 @@ function keyringer_set_env { fi if [ ! -z "$KEYID" ]; then - GPG="gpg --quiet -u $KEYID" + GPG="gpg --quiet --no-encrypt-to -u $KEYID" else - GPG="gpg --quiet" + GPG="gpg --quiet --no-encrypt-to" fi # Check keyring config version -- cgit v1.2.3 From bfb19958de60135f98deec6089cd291b43ba9d9c Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 30 Jan 2019 15:00:56 -0200 Subject: Keyringer 0.5.4 --- ChangeLog | 2 +- keyringer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3f6ccfc..1142a1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -2019-01-29 - unreleased - Silvio Rhatto +2019-01-29 - 0.5.4 - Silvio Rhatto Use --no-encrypt-to GnuPG option to strictly respect the recipients file diff --git a/keyringer b/keyringer index 6b33c6c..c419d35 100755 --- a/keyringer +++ b/keyringer @@ -140,7 +140,7 @@ function keyringer_dispatch { # Config NAME="keyringer" -KEYRINGER_VERSION="0.5.3" +KEYRINGER_VERSION="0.5.4" CONFIG_VERSION="0.1" CONFIG_BASE="$HOME/.$NAME" CONFIG="$CONFIG_BASE/config" -- cgit v1.2.3