什么是“名字”?在 M2Crypto Engine 类方法中
以下 3 个引擎方法需要“名称”作为参数。
load_private_key(self, name, pin=None)
load_public_key(self, name, pin=None)
load_certificate(self, name)
“名字”到底是什么?从示例中我发现它似乎是 USB 令牌的某种类型的插槽 ID。我如何找到该id?
The following 3 Engine methods require 'name' as an argument.
load_private_key(self, name, pin=None)
load_public_key(self, name, pin=None)
load_certificate(self, name)
What exactly is 'name'? From examples I've found it appears to be some type of slot id for the USB token. How do I find the id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在以下网站上找到了一些信息: http://www.etokenonlinux.org/et/FAQ
在输出中搜索私钥对象及其 ID。
当我使用此命令中的 ID 作为参数时,我不会收到错误。
I found some information on the following website: http://www.etokenonlinux.org/et/FAQ
In the ouput search for a private key object and its ID.
When I use the ID from this command as the arg, I don't get errors.
这些可能分别指私钥文件、公钥文件和签名证书。 此站点提供了创建这些示例。
Those are probably referring to the private key file, public key file, and signed certificate respectively. There are examples for creating those at this site.