-
STCP Protocol (Secure Transmission Control Protocol)
Lately i’ve been very busy with STCP protocol that I’ve made. Now I’ve done SDK for it .. it is under GPL-3 license: https://github.com/MiesSuomesta/STCP/ The API is very simple, and follows the TCP api: Client: Can connect, receive (plaintext), send (plaintext) and disconnect. The system will handle the encryption/decryption, no need to know nothing about AES etc. Server: Can bind to address, receive and send response and stop the server. Receiving and responding are done with a callback that receives plaintext incoming data and it shall respond with plaintext data, the encryption / decryption is done with in the system. So: All encryption/decryption is done within the Rust library, no…