figenc

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

commit 9e680976a3221ab024260e2b15a5f47f2de62a25
parent e77e984aea74ec3ded3906bada7d1d939529f929
Author: therealFIGBERT <figbertwelner@gmail.com>
Date:   Tue, 13 Aug 2019 12:20:32 -0700

2.3.1

Diffstat:
MExecutables/figENC.dmg | 0
MExecutables/figENC_MacOS/figENC.app/Contents/MacOS/base_library.zip | 0
MExecutables/figENC_MacOS/figENC.app/Contents/MacOS/figENC | 0
MExecutables/figENC_MacOS/figENC.app/Contents/Resources/version.txt | 4++--
MScripts/decrypt.py | 4++--
MScripts/encrypt.py | 4++--
MScripts/key.py | 4++--
MScripts/version.txt | 4++--
8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Executables/figENC.dmg b/Executables/figENC.dmg Binary files differ. diff --git a/Executables/figENC_MacOS/figENC.app/Contents/MacOS/base_library.zip b/Executables/figENC_MacOS/figENC.app/Contents/MacOS/base_library.zip Binary files differ. diff --git a/Executables/figENC_MacOS/figENC.app/Contents/MacOS/figENC b/Executables/figENC_MacOS/figENC.app/Contents/MacOS/figENC Binary files differ. diff --git a/Executables/figENC_MacOS/figENC.app/Contents/Resources/version.txt b/Executables/figENC_MacOS/figENC.app/Contents/Resources/version.txt @@ -1 +1 @@ -2.3.0 -\ No newline at end of file +2.3.1 +\ No newline at end of file diff --git a/Scripts/decrypt.py b/Scripts/decrypt.py @@ -111,4 +111,4 @@ def dec_manager(files, key_dir, passkey): return None with open(sym, "wb") as sym_src: sym_src.write(sym_dec) - success() -\ No newline at end of file + success("dec") +\ No newline at end of file diff --git a/Scripts/encrypt.py b/Scripts/encrypt.py @@ -99,4 +99,4 @@ def enc_manager(target_files, save_folder): ) with open(sym_src, "wb") as crypto_key_file: crypto_key_file.write(encrypted_key) - success() -\ No newline at end of file + success("enc") +\ No newline at end of file diff --git a/Scripts/key.py b/Scripts/key.py @@ -96,4 +96,4 @@ def just_key_manager(mode, save_folder, passkey): rsa_key(pub_src, priv_src, passkey) else: mixed_key(pub_src, priv_src, sym_src, passkey) - success() -\ No newline at end of file + success("key") +\ No newline at end of file diff --git a/Scripts/version.txt b/Scripts/version.txt @@ -1 +1 @@ -2.3.0 -\ No newline at end of file +2.3.1 +\ No newline at end of file