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 need to know how to setup secure communi-cation, the STCP takes care of all of that.
The SDK development kit is available for the brave hearts, who wish to create own setup 🙂
No dynamic linking required, the libraries are FULL-Static, they include everything the system needs to work.
It is drop in replacement for any TCP-connection.
–Lja