Skip to content

Mini-Ware/File-Locker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

File-Locker

Keep your files obfuscated by locking them with XOR encryption

License Stars Forks
Contributors Issues Commit

What is XOR encryption?

  • XOR Encryption algorithm is an easy to implement method of symmetric encryption
  • You can read more about it on Wikipedia

How to use?

  1. Clone this repository
$ git clone https://github.com/Mini-Ware/File-Locker
  1. To lock a file, run the following commands
$ cd File-Locker
$ chmod +x run.sh
$ ./run.sh <file name>
  1. To unlock that file, run the following commands
$ ./run.sh <file name>

Disclaimer

  • Methods such as factoring could possibly break XOR encryption
  • XOR encryption is NOT the most secure way of encrypting data
  • You can read more about it on Wikipedia

Anything else?

  • Star this repository if you found it interesting/helpful
  • Submit issues for new features/report bugs
  • Contribute by making pull requests