Gilgames000 / go-noscrypto

Golang implementation of the packet encryption/decryption algorithms used by the MMORPG NosTale.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-noscrypto

Golang implementation of the packet encryption/decryption algorithms used by the MMORPG NosTale.

Installation

go get -u github.com/gilgames000/go-noscrypto/

Example

package main

import (
	"fmt"
	"github.com/gilgames000/go-noscrypto/pkg/noscryptoclt"
)

func main() {
	sessionNumber := 10
	encryptedPacket := noscryptoclt.EncryptGamePacket("say 1 1337 0 Hello World", sessionNumber)
	fmt.Println("encryptedPacket : ", encryptedPacket)
}

Packages

  • noscryptoclt - algorithms used by NosTale Gameforge client
  • noscryptosrv - algorithms used by NosTale Gameforge server (incomplete)

Documentation

You can check the documentation online on godoc.org

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgements

About

Golang implementation of the packet encryption/decryption algorithms used by the MMORPG NosTale.

License:MIT License


Languages

Language:Go 100.0%