-
Notifications
You must be signed in to change notification settings - Fork 24
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
end-to-end encryption #5
Comments
Is there a way to implement DTLS for broadcast? Because my understanding is that TLS over UDP requires a handshake with each host, which can be tedious to do if you are connecting to a large number of nodes. |
Ouch... Not sure. Bottom line though, you don't want people reading what Okay, one attribute of your tool is that you don't want to have to do a You will need secrecy, integrity checking, and authentication. One possible IV = 8 bytes from /dev/urandom All lowercase supplied by user. Now, how do we make this immune to replay attacks? Here's one way, that will work 5 times. Take an original aes_key, and hash The key changes, but it's based on one key you supply, and once you NOW... the best thing is still to find a reputable module that has already But first, try to find a suitable module made by a reputable crypto dev. Cheers, On Tue, May 27, 2014 at 1:37 PM, Poly [email protected] wrote:
|
An attacker who can MITM the connection can obtain password hashes that they can crack offline, or replay the traffic for undesirable consequences (separate issue).
Might be possible to use this:
https://pypi.python.org/pypi/Dtls/0.1.0
Some sort of real authentication with secrecy and integrity checking would be better.
The text was updated successfully, but these errors were encountered: