Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make p2p communication private #2302

Closed
andrevmatos opened this issue Aug 29, 2018 · 1 comment
Closed

Make p2p communication private #2302

andrevmatos opened this issue Aug 29, 2018 · 1 comment
Labels

Comments

@andrevmatos
Copy link
Contributor

andrevmatos commented Aug 29, 2018

Problem Definition

As per #473 and related issues, raised on this comment, we should make sure the communication between nodes is private and secure. Most straightforward approach is to offload this duty to the transport, and for Matrix it means making and ensuring the rooms are private and e2e encrypted

room = self._client.create_room(
room_name,
invitees=[user.user_id for user in invitees],
is_public=True, # FIXME: debug only
)

room = self._client.create_room(
None,
invitees=[user.user_id for user in invitees],
is_public=True, # FIXME: debug only
)

@andrevmatos
Copy link
Contributor Author

Replaced by #2501

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants