Skip to content

Locking files/folders [FF] in GNU/Linux via text-based user interface (TUI)

License

Notifications You must be signed in to change notification settings

camarman/FFLocker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FFLocker

Locking files/folders [FF] in GNU/Linux via text-based user interface (TUI).

The most important part of the algorithm is that during the locking process, your password is never saved on the computer and only displayed in the terminal for you to save it.

Description

FFLocker uses AES encryption. You can either create a password with 16, 24, and 32 characters (which corresponds to 128, 192, and 256 bits, respectively) or generate a random password with the help of the secrets.choice.

After you lock the file/folder, the program will change the binary data and overwrite it. To read/open the encrypted file/folder, you have to enter the password.

I have written the program in such a way that when you decrypt the file/folder, a new file/folder will be created as a precaution against entering the wrong password. At the end of the decryption process, you can permanently delete the encrypted file/folder via a single command (see the WARNING subsection).

Additionally, every file and folder receives .enc and ENC extensions at the end of the encryption process. If your pathname does not contain these extensions, the decryption process does not begin. Similarly, you cannot encrypt the file/folder if it has a .enc or ENC extension.

WARNING

Even if your password is wrong, the program will decrypt the file/folder and produce a result if it has a sufficient number of characters (bytes). In this case, be careful about deleting the encrypted file/folder since the decrypted one will be unreadable due to the wrong password. As for advice, always open and read the decrypted file/folder before you delete the encrypted one.

Installation

You can install the FFLocker via pip

python3 -m pip install fflocker

or by directly cloning to your desired directory

git clone https://github.com/camarman/FFLocker.git

Requirements

FFLocker requires pycryptodome, which can be installed by running

python3 -m pip install pycryptodome

User Guide

To start the file locking process run

python3 -m fflocker.file_locker

Similarly, to start the folder locking process run

python3 -m fflocker.folder_locker

from the terminal.

Overview

Encryption process of a file Decryption process of a file
enc_file dec_file
Encryption process of a folder Decryption process of a folder
enc_folder dec_folder

Upcoming Features

I am thinking to implement a command line interface (CLI), and it will probably look like this:

$ fflocker -Fe [path]
$ fflocker -De [path]
$ fflocker -Fd [path]
$ fflocker -Dd [path]

-F --File
-D --Directory
-e --encrypt
-d --decrypt