1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-11-15 04:27:18 +00:00

Rename signature handling classes

This commit is contained in:
R. Richard 2019-05-21 10:22:07 +02:00
parent 769a87e0df
commit bcf4f35e61

View File

@ -6,7 +6,7 @@ from tfw import EventHandlerBase
from tfw.components import PipeIOEventHandler from tfw.components import PipeIOEventHandler
from pipe_io_auxlib import ( from pipe_io_auxlib import (
MsgSignPipeIOEventHandler, MsgVerifyPipeIOEventHandler, SignMessagePipeIOEventHandler, VerifyMessagePipeIOEventHandler,
DeployPipeIOEventHandler, IdePipeIOEventHandler, DeployPipeIOEventHandler, IdePipeIOEventHandler,
FSMPipeIOEventHandler FSMPipeIOEventHandler
) )
@ -31,13 +31,13 @@ if __name__ == '__main__':
permissions=0o666 permissions=0o666
) )
sign_pipe = MsgSignPipeIOEventHandler( sign_pipe = SignMessagePipeIOEventHandler(
'/tmp/tfw_sign_send', '/tmp/tfw_sign_send',
'/tmp/tfw_sign_recv', '/tmp/tfw_sign_recv',
forwarding=True forwarding=True
) )
verify_pipe = MsgVerifyPipeIOEventHandler( verify_pipe = VerifyMessagePipeIOEventHandler(
'/tmp/tfw_verify_send', '/tmp/tfw_verify_send',
'/tmp/tfw_verify_recv' '/tmp/tfw_verify_recv'
) )