https://github.com/larrythecoder/doxyprotocol
A client-server communication for WaterDogPE
https://github.com/larrythecoder/doxyprotocol
Last synced: 7 months ago
JSON representation
A client-server communication for WaterDogPE
- Host: GitHub
- URL: https://github.com/larrythecoder/doxyprotocol
- Owner: larryTheCoder
- Created: 2021-04-14T22:54:16.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-06T07:06:06.000Z (about 5 years ago)
- Last Synced: 2025-04-06T16:40:51.201Z (about 1 year ago)
- Language: Java
- Size: 32.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DoxyProtocol
[](https://jenkins.potatohome.xyz/job/DoxyProtocol)
A passwordless client-server communication for WaterDogPE. It enforces SSL/TLS verification, securing the client-server
socket. My understanding about SSL is a bit low, however it does work flawlessly :)
This project was named as DragonNetProtocol, please pardon the classpath naming.
## Creating SSL certificates
The current SSL certificates is generated by myself, and is not secure as it is open to public, I recommend you to
change them. Creating an SSL certificate, self-signed, is fairly easy by using the command below:
```bash
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:8192 -keyout private_key.key -out certificate.crt
```
Run this command in `/certificates` under DoxyProtocol plugin data folder.
## Running DoxyProtocol in Nukkit/PocketMine-MP
This section is to be done.