Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (26 loc) · 906 Bytes

File metadata and controls

32 lines (26 loc) · 906 Bytes

Composer

Shader file encryption/decryption tool for Halo Custom Edition usin XTEA algorithm.

Usage

Encrypt

D:\shaders> composer-encrypt
usage: composer-encrypt [options] ... <input-file>
options:
  -o, --output    Encrypted shader output file.
  -h, --help      Print this message.

D:\shaders> composer-encrypt shader.bin
encrypted shader file: "shader.enc"

Decrypt

D:\shaders> composer-decrypt
usage: composer-decrypt [options] ... <input-file>
options:
  -o, --output    Decrypted shader output file.
  -h, --help      Print this message.

D:\shaders> composer-decrypt shader.enc
decrypted shader file: "shader.bin"

Links