반응형
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
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
반응형
'리눅스' 카테고리의 다른 글
파일 브라우징과 HTTP 파일 업로드를 구성하는 방법 (0) | 2022.03.23 |
---|---|
Simple HTTP File Upload Server (0) | 2022.03.22 |
Docker Registry를 구성하는 방법 (0) | 2022.03.18 |
PHP phpinfo.php 페이지를 생성하는 방법 (0) | 2022.03.16 |
CentOS 7에서 PHP-FPM을 최신 버전으로 설치하기 (0) | 2022.03.16 |