aboutsummaryrefslogtreecommitdiff
path: root/ssh-agent-loadkey
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-agent-loadkey')
-rwxr-xr-xssh-agent-loadkey3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-agent-loadkey b/ssh-agent-loadkey
index 840ea82..841e3d2 100755
--- a/ssh-agent-loadkey
+++ b/ssh-agent-loadkey
@@ -18,7 +18,8 @@ function __query {
(
cd $KEYS && find -name '*.pub' | sed -e 's/.pub$//' | grep -v decomissioned | while read line; do
# See https://security.stackexchange.com/questions/129724/how-to-check-if-an-ssh-private-key-has-passphrase-or-not#129727
- if grep -q ',ENCRYPTED' $line; then
+ #if grep -q ',ENCRYPTED' $line; then
+ if ! ssh-keygen -y -P "" -f $line &> /dev/null; then
handle="`echo $line | cut -d '/' -f 3`"
type="`echo $line | cut -d '/' -f 2`"
echo "$handle ($type)"