From 6ed699395fc6c89716d32571b6e3ef2575c9d162 Mon Sep 17 00:00:00 2001 From: brulijam Date: Sat, 8 Jun 2024 23:01:46 +0200 Subject: [PATCH] . --- src/brulijam/lib/createNetworkingKey.lua | 2 +- src/brulijam/lib/networking.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/brulijam/lib/createNetworkingKey.lua b/src/brulijam/lib/createNetworkingKey.lua index 8a85ce3..b9ff3da 100644 --- a/src/brulijam/lib/createNetworkingKey.lua +++ b/src/brulijam/lib/createNetworkingKey.lua @@ -5,7 +5,7 @@ os.loadAPI("brulijam/lib/aes.lua") function createKeyfile() basic.clearDisplay() - print("[Networking]") + print("[NETWORKING]") print("Please enter a shared secret for networking.") print("This will be used to communicate with other Devices and should be the same on different Turtles and Computers that you want to be connected.") write("Input: ") diff --git a/src/brulijam/lib/networking.lua b/src/brulijam/lib/networking.lua index d64eb97..2bcfe37 100755 --- a/src/brulijam/lib/networking.lua +++ b/src/brulijam/lib/networking.lua @@ -6,7 +6,7 @@ os.loadAPI("brulijam/lib/aes.lua") function createKeyfile() basic.clearDisplay() - print("[Networking]") + print("[NETWORKING]") write("Please enter shared secret for networking: ") local pwHash = hash.digestStr(read("*") .. "salty salt") basic.writeToFile("brulijam/files/networking-key.txt", pwHash)