User Tools

Site Tools


security:base64

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.txt · Last modified: 2023/01/11 20:29 by 127.0.0.1

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