有关 gpgme_passphrase_cb_t 的帮助
我正在使用 GPGME...我需要一个关于使用 gpgme_passphrase_cb_t
和 gpgme_set_passphrase_cb
函数的示例,因为我不明白如何创建 gpgme_passphrase_cb_t
代码>.
I'm working with GPGME...I need an example on use of gpgme_passphrase_cb_t
and gpgme_set_passphrase_cb
function because I don't understand how to create a gpgme_passphrase_cb_t
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是来自 gpgme++ 的代码,它将基于回调的接口包装到 C++ 接口中:
接口:
该函数应该显示
description
作为提示,并返回输入的密码短语(缓冲区必须是 <代码>malloc()ed)。它还可以将canceled
设置为true
以指示用户中止。参数useridHint
和previousWasBad
只是附加信息。这是通用回调:
给定
PassphraseProvider
接口的实现pp
,您可以将所有内容绑定在一起,如下所示:This is the code from gpgme++ that wraps the callback-based interface into a C++ interface:
The interface:
The function is supposed to display
description
as a prompt, and return the passphrase entered (the buffer must bemalloc()
ed). It may also setcanceled
totrue
to indicate that the user aborted. The parametersuseridHint
andpreviousWasBad
are just additional information.And this this the generic callback:
Given an implementation
pp
of thePassphraseProvider
interface, you'd tie everything together like this: