figenc

[RADIOACTIVE] rsa and symmetric key encryption scripts and executables
git clone git://git.figbert.com/figenc.git
Log | Files | Refs | README

commit f1c28ad1da2268539aec56b12f9c92cafe1b2d4d
parent 72f641b642eb01616fce70da3172b0fff51e49e3
Author: therealFIGBERT <naomi@Naomis-MacBook-Air.local>
Date:   Wed,  3 Jul 2019 14:05:27 -0700

Ensuring platform continuity

Diffstat:
MMacOS/figENC_MacOS.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/MacOS/figENC_MacOS.py b/MacOS/figENC_MacOS.py @@ -58,6 +58,7 @@ def setup(mode): passcode_instructions.pack() passcode_input.pack(fill='x') save_label.pack() + save_instructions.config(text="Location of the stored keys") save_instructions.pack() save_input.pack(fill="both") submit.config(text="Decrypt file/s") @@ -126,7 +127,7 @@ file_instructions = tk.Label(modifiers, text="Separate filepaths with colons (:) file_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN) passcode_label = tk.Label(modifiers, text="If you see this, the app broke", font=("Arial", "14")) passcode_instructions = tk.Label(modifiers, text="If you see this, the app broke", font=("Arial", "11")) -passcode_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN) +passcode_input = tk.Entry(modifiers, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, show="*") save = tk.Frame(step_two, bg='white') save.pack(fill='both')