在 openssl 中生成对称密钥

在 openssl 中生成对称密钥

我需要在 openSSL 中根据 AES 标准生成 128 位对称密钥。不幸的是,我在 openssl 中找不到。如何生成对称密钥?

答案1

您可以使用这个答案作为参考。命令是:

openssl rand -hex 16

相关内容