«   2025/03   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
Recent Posts
Today
Total
03-15 13:28
300x250
관리 메뉴

변군이글루 블로그(Development)

Base64 인코딩(Base64 디코딩) 본문

리눅스

Base64 인코딩(Base64 디코딩)

변군Dev 2022. 3. 18. 20:58
728x90

Base64 인코딩(Base64 디코딩)

  • Base64 인코딩
echo -n 'admin:admin' | base64
$ echo -n 'admin:admin' | base64
YWRtaW46YWRtaW4=
  • Base64 디코딩
echo -n 'YWRtaW46YWRtaW4=' | base64 --decode
$ echo -n 'YWRtaW46YWRtaW4=' | base64 --decode
admin:admin

BASE64 Decode and Encode

https://www.base64encode.org/

 

Base64 Encode and Decode - Online

Encode to Base64 format or decode from it with various advanced options. Our site has an easy to use online tool to convert your data.

www.base64encode.org

 

728x90