Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mixa3607/yggdrasil.net

Minecraft yggdrasil server implemented with ASP.NET Core
https://github.com/mixa3607/yggdrasil.net

minecraft yggdrasil-minecraft-login

Last synced: 2 days ago
JSON representation

Minecraft yggdrasil server implemented with ASP.NET Core

Awesome Lists containing this project

README

        

# Yggdrasil.Net - minecraft auth server
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mixa3607/Yggdrasil.Net/push.yml?branch=master&style=flat-square)
![GitHub](https://img.shields.io/github/license/mixa3607/Yggdrasil.Net?style=flat-square)

## Setup server and client to use custom auth
- Client side [HMCLauncher](https://github.com/huanghongxun/HMCL)
- Server side [AuthLib injector](https://github.com/yushijinhun/authlib-injector)

## X509 certs for signing generation
```sh
cd /files/certs
openssl genrsa 4096 > private.pem
openssl req -x509 -new -key private.pem -out public.pem
openssl pkcs12 -export -in public.pem -inkey private.pem -out cert.pfx
```