add comments linking original source for encryption and prs compression

This commit is contained in:
Gered 2021-11-25 20:40:43 -05:00
parent 3a5ecb9df5
commit d9e9d70bc6
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,9 @@
/*
* The contents of this module are ported from the Fuzziqer "newserv" project with some minor
* alterations by me.
* https://github.com/fuzziqersoftware/newserv (Compression.cc + Compression.hh)
*/
use std::ffi::c_void;
use thiserror::Error;

View file

@ -1,3 +1,9 @@
/*
* The contents of this module are ported from the Fuzziqer "newserv" project with some minor
* alterations by me.
* https://github.com/fuzziqersoftware/newserv (PSOEncryption.cc + PSOEncryption.hh)
*/
const PC_STREAM_LENGTH: usize = 57;
const GC_STREAM_LENGTH: usize = 521;