You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a platform which runs a WAMP router, that system also has a secure element. each user (mobile phone / website) has their own public/private key generated on login. The current implementation in autobahn ties the Key (mix of originator and responder keys) to a URI.
This is mostly fine however in our case it is desired to have 1 responder and multiple originators, the originators can dynamically change as people are added/removed from the system.
From the look of it, it is currently not possible with the autobahn-python API. There are two changes that I think will make the above possible
The Key object should support multiple originators (a list)
the enc_key in the Invocation should be used to determine if the originator is "expected"
The text was updated successfully, but these errors were encountered:
om26er
changed the title
E2E Encryption: Support custom keyring strategies
E2E Encryption: Support more keyring strategies
Jul 28, 2022
pls see my comments #1586 (comment) - which roughly apply here as well. "E2Ev2" is the way forward, not "E2Ev1" ... but even more so, we need to have a proper design and spec first (eg wamp-proto/wamp-proto#417) before jumping into moving code around ...
We have a platform which runs a WAMP router, that system also has a secure element. each user (mobile phone / website) has their own public/private key generated on login. The current implementation in autobahn ties the Key (mix of originator and responder keys) to a URI.
This is mostly fine however in our case it is desired to have 1 responder and multiple originators, the originators can dynamically change as people are added/removed from the system.
From the look of it, it is currently not possible with the autobahn-python API. There are two changes that I think will make the above possible
Key
object should support multipleoriginators
(a list)enc_key
in the Invocation should be used to determine if the originator is "expected"The text was updated successfully, but these errors were encountered: