Skip to content

Instantly share code, notes, and snippets.

@x4fx77x4f
x4fx77x4f / decrypt_gdec.lua
Last active September 28, 2024 17:06
Decrypt Godot Engine GDEC files and Looking Up I See Only A Ceiling save files and The Relapse assets
#!/usr/bin/env luajit
local argparse = require("argparse")()
argparse:argument("input_path")
argparse:argument("output_path", nil, "-")
argparse:mutex(
argparse:option("--password"),
argparse:option("--key")
)
local arguments = argparse:parse()