Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 715 Bytes

File metadata and controls

20 lines (13 loc) · 715 Bytes

ferneter

Simple Fernet encyrptor and decryptor using Python

documentation for Fernet

usage

-> To encrypt: python3 encryptor.py enter file name > "filename.txt" {Copy the key from ' to '}

-> To decrypt: python3 decryptor.py enter file name to decrypt > encrypted_file.txt provide key to decrypt > [the key that was previously generated]

  • simple, 23/20 lines script(s) for basic encryption. With this method in mind you can take Fernet to the next level and even encrypt entire Python malicious scripts for obfuscation and evasion.
  • thank you for reading through!