isislovecruft/python-gnupg

Detached signatures do not work as expected

jannschu opened this issue · 0 comments

Hi,

gpg.sign(data, detach=True)

and

gpg.sign(data, detach=False)

produce idential outputs. This is related to #180. Adding clearsign=False makes it work. This seems an API bug.

Possible fix: Change the default parameter values from False to None und adjust the logic.