praiselang is a lightweight encryption/decryption algorithm that uses Base64 and praiselang substitution algorithm together.
YouTube: https://www.youtube.com/watch?v=0gjHvFUlF_8
Programming Language: C, Bash
Compiler: GNU GCC
Build Tool: CMake
CMake (MIN 3.22)
https://github.com/MertGunduz/praiselang
chmod 755 INSTALL.sh
running this command will change the permission of the INSTALL.sh
./INSTALL.sh
running this bash file will build the application
try running
praiselang -h
if there are some output related to praiselang then it means it is successfully builded
praiselang -e [DATA]
praiselang --encrypt [DATA]
encrypts the given data
praiselang -d [DATA]
praiselang --decrypt [DATA]
decrypts the given encrypted data
praiselang -h
praiselang --help
outputs a detailed manuel about praiselang
praiselang -v
praiselang --version
outputs the version of praiselang
praiselang -g
praiselang --github
outputs the source code link of praiselang
praiselang -e hello
Tmljb25NZWdhbGVzaXVzQXN0YXJvdGhBc3Rhcm90aFNvbmVpbGxvbg==
praiselang -d Tmljb25NZWdhbGVzaXVzQXN0YXJvdGhBc3Rhcm90aFNvbmVpbGxvbg==
hello