Skip to content

Instantly share code, notes, and snippets.

@RoadrunnerWMC
RoadrunnerWMC / unstir.py
Created December 29, 2016 22:45 — forked from Treeki/unstir.py
Super Mario Run .stir file decrypter
# fun fact:
# this is internally referred to as 'SimpleEncryption'
# it is pretty damn simple, really
import sys
KEY = 0x5D
INITIAL_SPAN = 0x200
SPAN = 0x100
input_name = sys.argv[1]