├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── MemoryStream.cpp ├── MemoryStream.h ├── README.md ├── csharp_types.h ├── pack.cpp ├── pfs_upk.cpp ├── pfs_upk.hpp ├── sha1.c ├── unpack.cpp └── xorcrypt.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/LICENSE -------------------------------------------------------------------------------- /MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/MemoryStream.cpp -------------------------------------------------------------------------------- /MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/MemoryStream.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/README.md -------------------------------------------------------------------------------- /csharp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/csharp_types.h -------------------------------------------------------------------------------- /pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/pack.cpp -------------------------------------------------------------------------------- /pfs_upk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/pfs_upk.cpp -------------------------------------------------------------------------------- /pfs_upk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/pfs_upk.hpp -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/sha1.c -------------------------------------------------------------------------------- /unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/unpack.cpp -------------------------------------------------------------------------------- /xorcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextgal/pfs_upk/HEAD/xorcrypt.cpp --------------------------------------------------------------------------------