Best secure data transfer method?

I am trying to set up a small network of computers where 4 child nodes feed small pieces of data into 1 parent node. I need data transfer between nodes that need to be protected (it’s safe, as in the case when packets are intercepted, it is not easy to determine their contents). Anyone have any suggestions? I looked at the HTTPS POST protocol and encrypted SOAP messages, but before I got my hands too dirty, I wanted to get an opinion from the crowd.

+3
source share
6 answers

HTTP over TLS is fine. And, since there are already quite a lot of tools around it, this should be a fairly simple and productive approach.

+3

TLS (SSL), , WS Security X.509. / .

+2

, HTTP over TLS ( HTTPS) , th HTTPS, ( ).

+1

TLS/SSL.
( , ):
- OpenSSL
- GnuTLS
- JSSE
-...

wikipedia TLS/SSL .

+1

, TLS, : Secure Sockets Layer. 1.2 MD5 SHA-1.

SHA - .

(VPN), , .

+1

You can configure ssh tunnels, which (IMHO) are better for transferring arbitrary data. Security is probably better because you can use public key cryptography to protect messages. The system does not scale very well, but if you have only 4 nodes, this should not be a problem.

+1
source

Source: https://habr.com/ru/post/1752693/


All Articles