OPENSSL 和私钥
Openssl 是一个很棒的安全库,我时常使用它。 当我生成 RSA 密钥时,我有带有私钥和公钥数据的 RSA 对象。好的。美好的。我对此很满意。我可以将私钥打印到打印机。问题来了。
是否可以仅根据输入的私钥(RSA->n)创建有效的 RSA 对象? 我进行了密钥检查,它要求提供有效的 p 和 q。好的。我输入了 p 和 q。但加密无法正常工作......有什么想法吗?
蒂亚!
Openssl is a great security library and I use it from time to time.
When I generate RSA keys I have RSA object with private and public key data. OK. Fine. I'm happy with that. I can print private key to the printer. And here come's the question.
Is it possible to create a valid RSA object only from the entered private key (RSA->n)?
I made key check and it asks for a valid p and q. OK. I entered p and q. But encrypting is not working properly...any ideas?
TIA!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定输入了 p 和 q 素数吗?
Did you make sure you entered p and q primes?
我解决了。 RSA 对象必须有 5 个有效变量:n、p、q、d 和 e。谢谢!
I worked it out. RSA object must have 5 valid variables: n, p, q, d and e. Thanks!