Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
OS X 10.8.3 C++
我们的代码中有 base64 编码和解码功能。
但是,我想从我的终端对一个字符串进行 base64 编码并在我的代码中使用它,以便我们的函数可以在需要使用它时对其进行解码。
base64 如何对来自终端的字符串进行编码?
使用base64命令,足够明智:
base64
# echo Hello | base64 SGVsbG8K # echo SGVsbG8K | base64 -D Hello
从这里:
我的 OS X 10.9.4 默认提供 base64 命令。
编码: base64 <<< string . 解码: base64 -D <<< string。
base64 <<< string
base64 -D <<< string