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 _DES_H_#define _DES_H_/// One 64-bit block.typedefstructBIT64{uint8_tb[8];}BIT64;voiddes_decrypt_block(BIT64*block);voiddes_decrypt(unsignedchar*data,size_tsize);#endif // _DES_H_