openssl command [ command_opts ] [ command_args ]openssl [ list-standard-commands | list-message-digest-commands | list-cipher-commands | list-cipher-algorithms | list-message-digest-algorithms | list-public-key
Message Digest commands (see the `dgst' command for more details) blake2b512 blake2s256 gost md4 md5 rmd160 sha1 sha224 sha256 sha3-224 sha3-256 sha3-384 sha3-512 sha384 sha512 sha512-224 sha512-256 shake128 shake256 sm3 Cipher commands (see the `enc'commandformore details) aes-...
Message Digest commands (see the `dgst' command for more details) md2 md4 md5 rmd160 sha sha1 Cipher commands (see the `enc' command for more details) aes-128-cbc aes-128-ecb aes-192-cbc aes-192-ecb aes-256-cbc aes-256-ecb base64 bf bf-cbc bf-cfb bf-ecb bf-ofb camellia-128-...
1、查看openssl版本 $ openssl version OpenSSL 1.0.1e-fips 11 Feb 2013 2、查看openssl支持的命令 $ openssl list-standard-commands asn1parse ca ciphers cms crl crl2pkcs7 dgst dh dhparam dsa dsaparam ec ecparam enc engine errstr gendh gendsa genpkey genrsa nseq ocsp passwd pkcs12 pkcs7 pkcs8 ...
在终端输入命令:openssl list-message-digest-commands,结果如下: md4 md5 rmd160 sha sha1 三、Cipher命令 在终端输入命令:openssl list-cipher-commands,结果如下: aes-128-cbc aes-128-ecb aes-192-cbc aes-192-ecb aes-256-cbc aes-256-ecb
3. openssl list-cipher-commands (Cipher命令的列表) 1) aes-128-cbc 2) aes-128-ecb 3) aes-192-cbc 4) aes-192-ecb 5) aes-256-cbc 6) aes-256-ecb 7) base64 8) bf 9) bf-cbc 10) bf-cfb 11) bf-ecb 12) bf-ofb 13) cast ...
# openssl list-cipher-commandsBlowfishを使用してファイルを暗号化します。# openssl enc -blowfish -salt -in file -out file.encBlowfishで暗号化されたファイルを復号化します。# openssl enc -d -blowfish -in file.enc -out file.decBASE64でエンコードされた証明書(PEMまたはRFC 1421とも呼...
openssl command [ command_opts ] [ command_args ] openssl [ list-standard-commands | list-message-digest-commands | list-cipher-commands | list-cipher-algorithms | list-message-digest-algorithms | list-public-key-algorithms] openssl no-XXX [ arbitrary options ] ...
openssl list -cipher-commands nano msg cat msg openssl enc -aes-256-cbc -base64 -in msg openssl enc -aes-256-cbc -base64 -in msg -out enc openssl enc -aes-256-cbc -d -base64 -in enc openssl enc -aes-256-cbc -d -base64 -in enc -out dec ...
#‘Cipher commands’下的列表 openssl -h # 算法列表,每行一个 openssl list-cipher-commands 选完加密算法后,还要决定是否对加密后数据进行base64编码,base64编码后数据方便查看,不编码就是二进制的形式。 # 使用256位AES算法CBC模式,加密file.txt为file.enc。 openssl enc -aes-256-cbc -salt -in file.txt...