tinode / chat

Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Additional Encryption Request.

nyangko opened this issue · comments

commented

When signing up for a user or changing information, the email or cell phone number is sent without encryption.

Please add encryption/decryption function to prevent leakage of user's personal information.

commented

When signing up for a user or changing information, the email or cell phone number is sent without encryption.

That's not true. All client <-> server traffic is encrypted with TLS (HTTPS). I don't see much value in adding more crypto on top of TLS for communication with the server. There is some value in e2ee (#357), but it's complex and creates legal problems.