Bump libmutton and support new SSH identity file passphrase entry

This commit is contained in:
2024-12-28 15:13:40 -05:00
parent 0e056822ef
commit 4933da4c37
7 changed files with 19 additions and 14 deletions
+2 -2
View File
@@ -29,12 +29,12 @@ func AddEntry(targetLocation string, hideSecrets bool, entryType uint8) {
// determine whether to generate the password
var password string
if entryType == 0 {
password = inputHidden("Password:")
password = string(inputHidden("Password:"))
} else {
password = core.StringGen(inputInt("Password length:", -1), inputBinary("Generate a complex (special characters) password?"), 0.2, false)
}
totp := inputHidden("TOTP secret:")
totp := string(inputHidden("TOTP secret:"))
url := input("URL:")
if inputBinary("Add a note to this entry?") {
note, _ := editNote([]string{})