实例
加密:
$ echo Hello World | base64
SGVsbG8gV29ybGQK
解密:
$ echo SGVsbG8gV29ybGQK | base64 -d
Hello World
语法
1、base64编码
(1)base64 file
功能:从指定的文件file中读取数据,编码为base64的字符串然后输出;
(2)echo “string” | base64
功能:将字符串string+换行编码为base64的字符串然后输出;
(3)echo -n “string” | base64
功能:将字符串string编码为base64的字符串然后输出;
2、base64解码
(1)base64 -d file
功能:从指定的文件file中读取已经过base64编码的数据,然后进行解码,并输出解码后的字符串;
(2)echo “str” | base64 -d
功能:对base64编码的字符串str和空行进行解码,然后将解码后的字符串输出;
(3)echo -n “str” | base -d
功能:对base64编码的字符串str进行解码,然后将解码后的字符串输出;