对称密钥算法在加密和解密时使用相同的密钥进行处理,这类算法众多可通过openssl list -cipher-commands具体查看。 (x)openssl子命令enc为对称加解密工具。 $ openssl enc --help Usage: enc [options] General options: -help Display this summary -list List ci
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是一个加密工具包,用于...
二、消息摘要命令 在终端输入命令: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 base64 bf bf-cbc bf-cfb bf-ecb bf-...
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-...
1. openssl list-standard-commands(标准命令) 1) asn1parse: asn1parse用于解释用ANS.1语法书写的语句(ASN一般用于定义语法的构成) 2) ca: ca用于CA的管理 openssl ca [options]: 2.1) -selfsign 使用对证书请求进行签名的密钥对来签发证书。即"自签名",这种情况发生在生成证书的客户端、签发证书的CA都是同...
-cipher-commands List of cipher commands -cipher-algorithms List of cipher algorithms -public-key-algorithms List of public key algorithms -public-key-methods List of public key methods -disabled List of disabled features -missing-help List missing detailed help strings ...
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 ] ...
commands, respectively, that are available in the present openssl utility. # 注释 :上面提到的 list-standard-commands、list-message-digest-commands、list-cipher-commands # 是三个伪命令,它们用于输出一个所有标准命令、消息摘要命令、Cipher 命令的列表。
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 ...
genpkey genrsa nseq ocsp passwd pkcs12 pkcs7 pkcs8 pkey pkeyparam pkeyutl prime rand req rsa rsautl s_client s_server s_time sess_id smime speed spkac ts verify version x509 3、加密密令 $ openssl list-cipher-commands aes-128-cbc aes-128-ecb aes-192-cbc aes-192-ecb aes-256-cbc ...