zgrf.crypto.mixcrypt

Provides de-/encryption methods for Gravity's Mixcrypt algorithm. It uses a combination of a custom routine and their broken DES.

Members

Functions

decrypt
ubyte[] decrypt(const(ubyte)[] data, const(ubyte)[] key, size_t unencryptedSize)

Decrypts data using the key 0x00. Key parameter is ignored.

encrypt
ubyte[] encrypt(const(ubyte)[] data, const(ubyte)[] key)

Encrypts data using the key 0x00. Key parameter is ignored.

Meta