Skip to content

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

License

Notifications You must be signed in to change notification settings

Gilgames000/go-noscrypto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages