maxacan / clypher

GNU General Public License v3.0
0 stars 0 forks source link

Add support for random file name generation. #7

Open maxacan opened 4 months ago

maxacan commented 4 months ago

Add support for random file name generation. Right now, the program just appends the .clypher extension to the output files.

It might be interesting to generate completely random output file names.

Example

clypher enc infile.txt --random-output-name would result in a file called 26cea78733baf90b.clypher instead of infile.txt.clypher (Done taking the hex representation of hash(infile.txt))

The resulting name might need to be generated based on the input, so naming collisions can be avoided.