Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

String Encryption in Linux [closed]

Could any please tell me how I can take in a 16 character string and generate a 16 character encrypted string ( In human readable format ) using command line tools.

I have explored options like openssl but I am not able to control the length of the output.

Could anyone please advise?

like image 920
arun nath Avatar asked Aug 25 '26 00:08

arun nath


1 Answers

There is a description of ROT13 in Linux here. I have not tested it:

$alias rot13="tr '[A-Za-z]' '[N-ZA-Mn-za-m]'"

That may meet your needs, though it is not at all secure.

like image 150
rossum Avatar answered Aug 27 '26 16:08

rossum



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!