handbook/tools/3.Web-Hacking/2.Cryptography/2.Encryption-and-Encoding/Create-Encoding/Base64.md

6 lines
143 B
Markdown
Raw Normal View History

2024-08-30 23:07:22 +00:00
## General commands
```Terminal
echo "BASE64CODE" | base64 -d ---> Decode
echo "BASE64CODE" | base64 -w0 ---> Encode
```