The SR29 encode and decode
Project description
#Description this program for protect your file or script with encode SR29
#INSTALL instaling using pip
pip install SR29
#Python ##for encode
import sr29
encode = sr29.encrypt('string', 'password', salt='I Love You').hexdigest()
print(encode)
##for decode
decode = sr29.decrypt(encode, 'password', salt='I Love You')
print(decode)
Program Script
$ SR29 fileIn.txt -o fileOut.txt