UNPKG

@gdapi/crypto

Version:

Encrypt/Decrypt Geometry Dash related data

6 lines (4 loc) 114 B
const ENCRYPTION_KEY = 11 export default function xor (data) { return data.map(x => x ^ ENCRYPTION_KEY) }