A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: update readme with rsa steps

+12
+12
README.md
··· 19 19 ```sh 20 20 xattr -d com.apple.quarantine /path/to/run.command 21 21 ``` 22 + 23 + ### RSA Login Encryption (Optional) 24 + 25 + RSA encrypts the login block between client and server. Disabled by default — both sides must match. 26 + 27 + In `config/client-config.yaml`, set the modulus from the server's `mix rsa.keygen` output: 28 + ```yaml 29 + rsa: 30 + rsaEnabled: true 31 + rsaPub: 65537 32 + rsaModulus: <decimal modulus from server> 33 + ```