Replies: 1 comment 3 replies
-
From a p2p perspective it also is dodgy: why would you blindly forward messages you cant possibly validate? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to possibly add some sort of group encryption to gossipsub? What I am looking to do allow one node to send data to a bunch of other nodes but not to the public. My idea is that there could be some sort of way to specify the resipiants when sending a gossipsub message. This would be enforced by encrypting the message so that it can be decrypted by a specified list of peers. These messages could still be routed like normal but sensitive data would remain safe.
From a cryptography perspective it would be hard as you would need to have one message that could be decrypted by many peers. I think the easiest way to do this would to have a decryption key that is encrypted for each receiving node.
Beta Was this translation helpful? Give feedback.
All reactions