From 990919f26810eec55ac352a5d97d63f5f1ed9127 Mon Sep 17 00:00:00 2001 From: Andres Alvarez <1671935+kir4h@users.noreply.github.com> Date: Wed, 8 Aug 2018 15:07:30 +0200 Subject: [PATCH] Add disclaimer about generated passwords being stored in an obscured format --- fs/config/config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/config/config.go b/fs/config/config.go index fc60d6b24..9f3c15753 100644 --- a/fs/config/config.go +++ b/fs/config/config.go @@ -770,7 +770,9 @@ func ChooseOption(o *fs.Option, name string) string { } password = base64.RawURLEncoding.EncodeToString(pw) fmt.Printf("Your password is: %s\n", password) - fmt.Printf("Use this password?\n") + fmt.Printf("Use this password? Please note that an obscured version of this \npassword (and not the " + + "password itself) will be stored under your \nconfiguration file, so keep this generated password " + + "in a safe place.\n") if Confirm() { break }