algorithms.h
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  * OpenKore - Padded Packet Emulator.
  3.  * Copyright (c) 2007 kLabMouse, Japplegame, and many other contributors
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13.  * See http://www.gnu.org/licenses/gpl.html for the full license.
  14.  */
  15. /**
  16.  * Padded packets algorithms interface.
  17.  *
  18.  * The padded packets system use a variety of hashing algorithms,
  19.  * depending on certain factors such as the last received map sync ID,
  20.  * account ID, the packet to pad, etc. This header provides a unified
  21.  * interface for calling the correct hashing algorithm.
  22.  */
  23. #ifndef _ALGORITHMS_H_
  24. #define _ALGORITHMS_H_
  25. #include "../typedefs.h"
  26. namespace OpenKore {
  27. namespace PaddedPackets {
  28. /**
  29.  * Generate a hash using the correct hashing algorithm,
  30.  * based on the given parameters.
  31.  */
  32. dword createHash(int map_sync, int sync, int account_id, short packet);
  33. /**
  34.  * Generate a hash using a specific algorithm and a specific key.
  35.  * This is mostly useful for debugging purposes.
  36.  */
  37. dword createHash(int algorithm_id, dword key);
  38. } // PaddedPackets
  39. } // OpenKore
  40. #endif /* _ALGORITHMS_H_ */