1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SecureSocketService/README.md

29 lines
904 B
Markdown
Raw Permalink Normal View History

2019-07-15 15:58:00 +02:00
![SecureSocketService Logo](https://flifloo.fr/images/Secure%20Socket%20Service.png)
2019-07-15 01:48:02 +02:00
<h1>Secure Socket Service</h1>
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
A simple but useful socket service I will use and update in the course of my projects
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
<h2>What is the secure ?</h2>
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
The connexion between two sockets is by default encrypted, a encryption key is pass from the server to the client with a pair of private and a public key
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
Also the server and the client check her "service id" to make sure it's the same app (yes it's easy to hack but it's a security, maybe upgrade later)
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
<h2>How to use it ?</h2>
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
Look at the [wiki](https://github.com/flifloo/SecureSocketService/wiki) ;3
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
<h2>License</h2>
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
This project is on the [MIT license](https://github.com/flifloo/SecureSocketService/blob/master/LICENSE)
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
<h2>Projects that use the SSS</h2>
2019-07-15 01:54:12 +02:00
2019-07-15 01:48:02 +02:00
* [Morpion](https://github.com/flifloo/Morpion)
2019-07-15 22:46:07 +02:00
* [PyTchat](https://github.com/flifloo/PyTchat)