Skip to content

Instantly share code, notes, and snippets.

View SutandoTsukai181's full-sized avatar

Mohamed Eldeeb SutandoTsukai181

View GitHub Profile
@SutandoTsukai181
SutandoTsukai181 / no_more_hashes.cpp
Last active July 5, 2021 08:39
Calculates a variant of MurmurHash used for identifying textures in No More Heroes PC port.
#include <iostream>
#include <fstream>
#include <string>
const char* VERSION = "1.1";
const char* AUTHOR = "SutandoTsukai181";
void printHeader()
{
std::cout << "No More Hashes v" << VERSION << "\n";
@SutandoTsukai181
SutandoTsukai181 / ev_encrypt.py
Created May 20, 2021 20:44
Encrypts entries in chunks of 32 bytes with the XOR key for JoJo ASB/EoH sound *_ev.xfbin files.
#!/usr/bin/env python
__author__ = 'SutandoTsukai181'
__license__ = "MIT"
__version__ = '1.0'
import os
from itertools import cycle
from sys import argv
@SutandoTsukai181
SutandoTsukai181 / ev_decrypt.py
Created May 20, 2021 20:43
Decrypts entries in chunks of 32 bytes with the XOR key for JoJo ASB/EoH sound *_ev.xfbin files.
#!/usr/bin/env python
__author__ = 'SutandoTsukai181'
__license__ = "MIT"
__version__ = '1.0'
import os
from itertools import cycle
from sys import argv