Skip to content
/ lockit Public

Python script to encrypt/decrypt your passwords saved in a .txt format using a password.

Notifications You must be signed in to change notification settings

sama64/lockit

Repository files navigation

passcrypt

This python script encrypts/decrypts your passwords saved in a .txt format using a password. It uses AES128(Fernet) for encryption.

Features:

  • Creates a folder called "encrypted passwords" with the encrypted content.
  • Prevents rainbow tables attacks with salting.
  • Only accepts ASCII characters for now.

Usage:

Receives the parameters encrypt or decrypt, and following the file. When decrypting the salt file can be specified as the last parameter. The salt is saved in the encrypted_passwords folder.

Examples:

Encryption

python3 main.py encrypt mypasswords.txt

Decryption

python3 main.py decrypt mypasswords Specify salt python3 main.py decrypt mypasswords salt

About

Python script to encrypt/decrypt your passwords saved in a .txt format using a password.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages