diff --git a/src/brulijam/lib/networking.lua b/src/brulijam/lib/networking.lua index e8437c6..d64eb97 100755 --- a/src/brulijam/lib/networking.lua +++ b/src/brulijam/lib/networking.lua @@ -6,6 +6,7 @@ os.loadAPI("brulijam/lib/aes.lua") function createKeyfile() basic.clearDisplay() + print("[Networking]") write("Please enter shared secret for networking: ") local pwHash = hash.digestStr(read("*") .. "salty salt") basic.writeToFile("brulijam/files/networking-key.txt", pwHash) diff --git a/src/brulijam/systemlock.lua b/src/brulijam/systemlock.lua index 7f7eb9f..e949386 100644 --- a/src/brulijam/systemlock.lua +++ b/src/brulijam/systemlock.lua @@ -12,6 +12,7 @@ local function createPwHash() local inputConfirmed = false while not inputConfirmed do basic.clearDisplay() + print("[Systemlock]") write("Create a new password: ") local input = read("*") pwHash = hash.digestStr(input .. os.getComputerID()) @@ -45,6 +46,7 @@ end local function inputPrompt() basic.clearDisplay() + print("[Systemlock]") write("Enter Password: ") inputHash = hash.digestStr(read("*") .. os.getComputerID()) end