Support Signify-based signatures
http://www.openbsd.org/papers/bsdcan-signify.html
This commit is contained in:
@@ -36,5 +36,6 @@ setup(
|
||||
'trezor-agent = trezor_agent:ssh_agent',
|
||||
'trezor-gpg = trezor_agent:gpg_tool',
|
||||
'trezor-gpg-agent = trezor_agent:gpg_agent',
|
||||
'trezor-signify = trezor_agent:signify_tool',
|
||||
]},
|
||||
)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import libagent.gpg
|
||||
import libagent.ssh
|
||||
from libagent import signify, gpg, ssh
|
||||
from libagent.device.trezor import Trezor as DeviceType
|
||||
|
||||
ssh_agent = lambda: libagent.ssh.main(DeviceType)
|
||||
gpg_tool = lambda: libagent.gpg.main(DeviceType)
|
||||
gpg_agent = lambda: libagent.gpg.run_agent(DeviceType)
|
||||
ssh_agent = lambda: ssh.main(DeviceType)
|
||||
gpg_tool = lambda: gpg.main(DeviceType)
|
||||
gpg_agent = lambda: gpg.run_agent(DeviceType)
|
||||
signify_tool = lambda: signify.main(DeviceType)
|
||||
|
||||
Reference in New Issue
Block a user