You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whiptail_warning --title "WARNING: Please insert your HOTP enabled USB Security Dongle (Attempt $attempt/3)" --msgbox "Your HOTP enabled USB Security Dongle was not detected.\n\nPlease remove it and insert it again." 0 80
869
+
whiptail_warning --title "WARNING: Please insert your HOTP enabled USB Security dongle (Attempt $attempt/3)" --msgbox "Your HOTP enabled USB Security dongle was not detected.\n\nPlease remove it and insert it again." 0 80
854
870
else
855
871
break
856
872
fi
857
873
done
858
874
859
875
if [ $attempt-eq 3 ];then
860
-
die "No HOTP enabled USB Security Dongle detected. Please disable 'CONFIG_HOTPKEY' in the board config and rebuild."
876
+
die "No HOTP enabled USB Security dongle detected. Please disable 'CONFIG_HOTPKEY' in the board config and rebuild."
861
877
fi
862
878
863
879
# Don't output HOTP codes to screen, so as to make replay attacks harder
HOTP="Error checking code, Insert USB Security Dongle and retry"
891
+
HOTP="Error checking code, Insert USB Security dongle and retry"
876
892
BG_COLOR_MAIN_MENU="warning"
877
893
;;
878
894
esac
@@ -997,21 +1013,21 @@ if [ "$use_defaults" == "n" -o "$use_defaults" == "N" ]; then
997
1013
;then
998
1014
GPG_GEN_KEY_IN_MEMORY="y"
999
1015
echo" ++++ Master key and subkeys will be generated in memory, backed up to dedicated LUKS container +++"
1000
-
echo -e -n "Would you like in-memory generated subkeys to be copied to USB Security Dongle's smartcard?\n (Highly recommended so the smartcard is used on daily basis and backup is kept safe, but not required) [Y/n]: "
1016
+
echo -e -n "Would you like in-memory generated subkeys to be copied to USB Security dongle's OpenPGP smartcard?\n (Highly recommended so the smartcard is used on daily basis and backup is kept safe, but not required) [Y/n]: "
1001
1017
read -n 1 prompt_output
1002
1018
echo
1003
1019
if [ "$prompt_output"=="n" \
1004
1020
-o"$prompt_output"=="N" ];then
1005
-
warn "Subkeys will NOT be copied to USB Security Dongle's smartcard"
1021
+
warn "Subkeys will NOT be copied to USB Security dongle's OpenPGP smartcard"
1006
1022
warn "Your GPG key material backup thumb drive should be cloned to a second thumb drive for redundancy for production environements"
1007
1023
GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD="n"
1008
1024
else
1009
-
echo"++++ Subkeys will be copied to USB Security Dongle's smartcard ++++"
1025
+
echo"++++ Subkeys will be copied to USB Security dongle's OpenPGP smartcard ++++"
1010
1026
warn "Please keep your GPG key material backup thumb drive safe"
1011
1027
GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD="y"
1012
1028
fi
1013
1029
else
1014
-
echo"GPG key material will be generated on USB Security Dongle's smartcard without backup"
1030
+
echo"GPG key material will be generated on USB Security dongle's OpenPGP smartcard without backup"
1015
1031
GPG_GEN_KEY_IN_MEMORY="n"
1016
1032
GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD="n"
1017
1033
fi
@@ -1177,24 +1193,24 @@ if [ "$GPG_GEN_KEY_IN_MEMORY" = "n" ]; then
1177
1193
fi
1178
1194
else
1179
1195
GPG_EXPORT=0
1180
-
# needed for USB Security Dongle below and is ensured via mount-usb in case of GPG_EXPORT=1
1196
+
# needed for USB Security dongle below and is ensured via mount-usb in case of GPG_EXPORT=1
1181
1197
enable_usb
1182
1198
fi
1183
1199
fi
1184
1200
1185
-
# ensure USB Security Dongle connected if GPG_GEN_KEY_IN_MEMORY=n or if GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD=y
1201
+
# ensure USB Security dongle connected if GPG_GEN_KEY_IN_MEMORY=n or if GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD=y
1186
1202
if [ "$GPG_GEN_KEY_IN_MEMORY"="n"-o"$GPG_GEN_KEY_IN_MEMORY_COPY_TO_SMARTCARD"="y" ];then
1187
-
echo -e "\nChecking for USB Security Dongle...\n"
1203
+
echo -e "\nChecking for USB Security dongle...\n"
1188
1204
enable_usb
1189
1205
if! gpg --card-status >/dev/null 2>&1;then
1190
-
local_whiptail_error "Can't access USB Security Dongle; \nPlease remove and reinsert, then press Enter."
1206
+
local_whiptail_error "Can't access USB Security dongle; \nPlease remove and reinsert, then press Enter."
0 commit comments