sec-pentesting-toolkit/Cryptography
2014-10-10 22:22:02 -04:00
..
Hash-Length-extension-attacks/VimeoHashExploit some small fixes 2014-09-30 23:29:07 -04:00
md5 some small fixes 2014-10-10 22:22:02 -04:00
RotationCiphers some small fixes 2014-10-08 01:38:11 -04:00
sha some small fixes 2014-10-10 22:22:02 -04:00
README.md some small fixes 2014-10-08 01:38:11 -04:00

TOOLS:

ROT13

In the command line

VAR=$(cat data.txt)
echo "$VAR"
alias rot13="tr A-Za-z N-ZA-Mn-za-m"
echo "$VAR" | rot13

In Python we can use: "YRIRY GJB CNFFJBEQ EBGGRA".decode(encoding="ROT13") https://docs.python.org/2/library/codecs.html#codec-base-classes