Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
1–10 of 48 posts
Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#2I've always thought something like this using WebRTC + a (simple) way to independently check that no data is being sent elsewhere would be really cool.
Btw you could declare a content security policy for just your site since you don't load anything off domain https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP Good luck!
Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#3Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#4Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#5I understand the benefits from instant web chat, but I think it's not too difficult to access the signal protocol through Whatsapp or Signal's desktop app.
I think Matrix (Riot) would be a better choice. It's e2e encrypted like Signal but doesn't have any nonsense reliance on phones or phone numbers. It also has extra features like true multiple device support, a federated protocol and an open server implementation.
Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#6- WebRTC is great in theory, terrible in practice (doesn't work very well), and still needs a bootstrapping server. So it is better to have a reliable websocket based server as the default/fallback, and WebRTC progressively enhanced.
- Signal and Whatsapp, as others have pointed out, are far from being comfortable as being private (they already know too much, phone number, etc.), and don't have the convenience of a browser based app.
- Yes, this app should be using the Web Crypto API (it is what we switched over to, for our P2P cryptographic user accounts: https://github.com/amark/gun/wiki/auth ) to reduce dependency on the server. You can use the `integrity` attribute to help out with this, but ultimately unless somebody installs it as an Electron app or something, browser based crypto has its limitations.
Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#7Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#8Quick response to some of the comments here: - WebRTC is great in theory, terrible in practice (doesn't work very well), and still needs a bootstrapping server. So it is better to have a reliable websocket based server as the default/fallback, and WebRTC progressively enhanced. - Signal and Whatsapp, as others have pointed out, are far from being comfortable as being private (they already know too much, phone number,…
Re: Show HN: Darkwire.io – instant encrypted web chat (Socket.io and Web Crypto API)
#9I understand the benefits from instant web chat, but I think it's not too difficult to access the signal protocol through Whatsapp or Signal's desktop app.
Those implementations both require phone numbers and registration through a mobile app (hence lack anonymity) and are useless for many use cases. I think Matrix (Riot) would be a better choice. It's e2e encrypted like Signal but doesn't have any nonsense reliance on phones or phone numbers. It also has extra features like true multiple device support, a federated protocol and an open server implementation.