Openssl base64命令

一、简介

对文件件进行base64的编码与解码

二、语法

openssl base64 [-in filename] [-out filename]

三、实例

1、二进制文件与base64编码互转

openssl base64 -in pubkey.bin -out pubkey.pem
openssl base64 -d -in pubkey.pem -out pubkey.bin

image

原文地址:https://www.cnblogs.com/274914765qq/p/4665902.html