如何用pyme签名数据?

时间:2009-10-07 10:34:36

标签: python encryption gnupg gpgme pyme

我刚刚在我的ubuntu系统上安装了pyme。这很容易(感谢apt-get)我可以重现示例代码(使用我的密钥环中的公钥进行加密)。现在我想签署一些数据,我没有设法找到任何示例代码,也没有太多文档。

这就是我一直在做的事情:

>>> plain = pyme.core.Data('this is just some sample text\n')
>>> cipher = pyme.core.Data()
>>> c = pyme.core.Context()
>>> c.set_armor(1)
>>> name='me@office.com'
>>> c.op_keylist_start(name, 0)
>>> r = c.op_keylist_next()
>>> c.op_sign(???)

我不知道作为参数提供什么,op_sign方法告诉我

>>> help(c.op_sign)
Help on function _funcwrap in module pyme.util:

_funcwrap(*args, **kwargs)
    gpgme_op_sign(ctx, plain, sig, mode) -> gpgme_error_t

但我不知道如何创建这样的对象。

1 个答案:

答案 0 :(得分:0)

您可以按照pyme doc中的示例进行修改并稍微修改一下:

import pyme.core
import pyme.pygpgme

plaintext = pyme.core.Data('this is a test message')
ciphertext = pyme.core.Data()
ctx = pyme.core.Context()
ctx.set_armor(1)
name = 'me@office.com'
ctx.op_keylist_start(name, 0)
key = ctx.op_keylist_next()
# first argument is message to sign, second argument is buffer where to write
# the signature, third argument is signing mode, see
# http://www.gnupg.org/documentation/manuals/gpgme/Creating-a-Signature.html#Creating-a-Signature for more details.
ctx.op_sign(plaintext, ciphertext, pyme.pygpgme.GPGME_SIG_MODE_CLEAR)
ciphertext.seek(0, 0)
print ciphertext.read()