diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-29 21:53:21 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-29 21:53:21 -0200 |
commit | b6115dbdc3c7b77be834a474131c9f68bbdd7487 (patch) | |
tree | ee9fb2a1f9dc955c6850fd2dcbaf1a736f7c9882 /scripts/genpair | |
parent | 8a5ad881c96aa85b2ca8057c313183ee5cddb4e9 (diff) | |
download | keyringer-b6115dbdc3c7b77be834a474131c9f68bbdd7487.tar.gz keyringer-b6115dbdc3c7b77be834a474131c9f68bbdd7487.tar.bz2 |
Minor changes
Diffstat (limited to 'scripts/genpair')
-rwxr-xr-x | scripts/genpair | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/genpair b/scripts/genpair index 1c0fa4c..ddbc2fd 100755 --- a/scripts/genpair +++ b/scripts/genpair @@ -7,7 +7,7 @@ # # Generate a keypair, ssh version -function keygen_ssh { +function genpair_ssh { echo "Make sure that $homedir is atop of an encrypted volume." read -p "Hit ENTER to continue." prompt @@ -19,7 +19,7 @@ function keygen_ssh { } # Generate a keypair, gpg version -function keygen_gpg { +function genpair_gpg { echo "Make sure that $homedir is atop of an encrypted volume." read -p "Enter password for the private key: " passphrase @@ -64,4 +64,4 @@ if [ "$?" != "0" ]; then fi # Dispatch -keygen_$keytype +genpair_$keytype |