The Mana World fork of Hercules. This is vanilla Hercules with a few tiny modifications for our specific needs. Mutually-beneficial modifications are contributed upstream.
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL// For more information, see LICENCE in the main folder#ifndef COMMON_DES_H#define COMMON_DES_H#include"../common/cbasetypes.h"/// One 64-bit block.typedefstructBIT64{uint8_tb[8];}BIT64;voiddes_decrypt_block(BIT64*block);voiddes_decrypt(unsignedchar*data,size_tsize);#endif // COMMON_DES_H