User Tools

Site Tools


security:base64

This is an old revision of the document!


base64 Verfahren

Codieren

openssl enc -base64 <<< "Hallo Welt"
SGFsbG8gV2VsdAo=

openssl enc -base64 -in datei.txt -out datei.b64

Dekodieren

echo SGFsbG8gV2VsdAo= | base64 --decode; echo
Hallo Welt

openssl enc -d -base64 -in datei.b64 -out datei.txt
security/base64.1603471611.txt.gz · Last modified: 2023/01/11 20:30 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki