什么是“名字”?在 M2Crypto Engine 类方法中

发布于 2024-08-21 06:15:44 字数 224 浏览 4 评论 0原文

以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

煮酒 2024-08-28 06:15:44

我在以下网站上找到了一些信息: http://www.etokenonlinux.org/et/FAQ

pkcs11-tool --module /usr/lib/libeTPkcs11.so --slot 0 -O --login

在输出中搜索私钥对象及其 ID。

Private Key Object; RSA
  label:      eTCAPI private key
  ID:         39453945373335312d333545442d343031612d384637302d3238463636393036363042303a35
  Usage:      decrypt, sign, unwrap

当我使用此命令中的 ID 作为参数时,我不会收到错误。

I found some information on the following website: http://www.etokenonlinux.org/et/FAQ

pkcs11-tool --module /usr/lib/libeTPkcs11.so --slot 0 -O --login

In the ouput search for a private key object and its ID.

Private Key Object; RSA
  label:      eTCAPI private key
  ID:         39453945373335312d333545442d343031612d384637302d3238463636393036363042303a35
  Usage:      decrypt, sign, unwrap

When I use the ID from this command as the arg, I don't get errors.

无悔心 2024-08-28 06:15:44

这些可能分别指私钥文件、公钥文件和签名证书。 此站点提供了创建这些示例。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文