-
Notifications
You must be signed in to change notification settings - Fork 15
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
Encrypt the json #47
Comments
That is an idea that I already had in my mind. (See: https://github.com/utoni/nDPId/milestone/3) |
excellent ! bye Fred |
Toni, bye Fred |
The idea is bit similar so far as it's the same JSON messages which are getting encrypted, but by a different application. I'll probably start with the |
you rock man !!! bye Fred |
Hi Toni, we have tested the process and it works fine... so if you could add that to your source code it'll be cool :o) bye Fred |
Hi Fred, thanks for your proposal. Is there any reason why you've used |
Toni, bye Fred |
Hi Toni,
another suggestion is to encrypt the json sent to the sock/UDP client.
architecture:
nDPId -> internet -> client (sock/UDP)
issue:
the json is clear text and could be intercepted by anyone
json part contains important data that can not be visible by all
solution/proposal:
encrypt with openssl (ex: cipher method AES-128-CTR) using a special encryption text
encrypted json must be decrypted by the client (sock/UDP) using C, Go, PHP, etc...
ndpid.conf:
passkey="blablabla..." # take care the value should double quoted because spaces could be allowed
#'passkey' or whatever you think it'll be the best way
#argument (ex: -P "blablabla...") also in the command line
what do you think ?
bye Fred
The text was updated successfully, but these errors were encountered: