반응형
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 |
[리눅스] Base64 인코딩(Base64 디코딩) (0) | 2022.03.18 |
[리눅스] PHP-FPM 최신(php-fpm 8.1) 버전 설치하기 (0) | 2022.03.16 |
[리눅스] configure, make, make install 명령 (0) | 2022.03.04 |
[리눅스] CentOS 7에 MySQL 5.7 설치(source compile & binary) (0) | 2022.03.04 |