We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我想问下密钥 公钥是怎么生成的
The text was updated successfully, but these errors were encountered:
在终端,先执行一下 openssl,然后执行:genrsa -out private_key.pem 2048 ,这会生成一个密钥文件,名字是 private_key.pem ,然后基于这个密钥再去生成一个公钥,执行:rsa -in private_key.pem -pubout -out public_key.pem,这个命令会生成一个公钥文件,名字是 public_key.pem。
genrsa -out private_key.pem 2048
private_key.pem
rsa -in private_key.pem -pubout -out public_key.pem
public_key.pem
Sorry, something went wrong.
No branches or pull requests
我想问下密钥 公钥是怎么生成的
The text was updated successfully, but these errors were encountered: