cocos2d-x 文件MD5校验(3)

来源:未知 责任编辑:责任编辑 发表时间:2013-11-15 19:49 点击:

p>  

p>  

p>//Null data (except for first BYTE) used to finalise the checksum calculation  

p>static unsigned char PADDING[64] = {  

p>    0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  

p>    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,  

p>    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0  

p>};  

p>#endif /* defined(__MD5ChecksumDefines__) */  

p> 

p>[cpp]  

p>//  

p>//  CMD5Checksum.h  

p>  

p>//  

p>  

p>#ifndef __CMD5Checksum__  

p>#define __CMD5Checksum__  

p>  

p>#include "cocos2d.h"  

p>USING_NS_CC;  

p>/***************************************************************************************** 

p>  

p>  

p> *****************************************************************************************/  

p>typedef unsigned long DWORD;  

p>typedef unsigned char BYTE;  

p>typedef unsigned long ULONG;  

p>typedef unsigned long ULONG;  

p>typedef unsigned int UINT;  

p>typedef unsigned char UCHAR;  

p>  

p>#define ASSERT CC_ASSERT  

p>#ifndef TRUE  

p>    #define TRUE true  

p>#endif  

p>#ifndef FALSE  

p>    #define FALSE false  

p>#endif  

p>class CMD5Checksum  

p>{  

p>public:  

p>    static std::string GetMD5OfString(std::string strString);  

p>    //interface functions for the RSA MD5 calculation  

p>    static std::string GetMD5(const std::string& strFilePath);  

p>      

p>protected:  

p>    //constructor/destructor  

p>    CMD5Checksum();  

p>    virtual ~CMD5Checksum() {};  

p>      

p>    //RSA MD5 implementation  

p>    void Transform(BYTE Block[64]);  

p>    void Update(BYTE* Input, ULONG nInputLen);  

p>    std::string Final();  

p>    inline DWORD RotateLeft(DWORD x, int n);  

p>    inline void FF( DWORD& A, DWORD B, DWORD C, DWORD D, DWORD X, DWORD S, DWORD T);  

p>    inline void GG( DWORD& A, DWORD B, DWORD C, DWORD D, DWORD X, DWORD S, DWORD T);  

p>    inline void HH( DWORD& A, DWORD B, DWORD C, DWORD D, DWORD X, DWORD S, DWORD T);  

p>    inline void II( DWORD& A, DWORD B, DWORD C, DWORD D, DWORD X, DWORD S, DWORD T);  

p>      

p>    //utility functions  

p>    inline void DWordToByte(BYTE* Output, DWORD* Input, UINT nLength);  

p>    inline void ByteToDWord(DWORD* Output, BYTE* Input, UINT nLength);  
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • cocos2d-x学习笔记(19)--label 、label atlas
  • cocos2d-x学习笔记(23)--地图的使用3--CCTMXLayer
  • Cocos2d-x学习(一):HelloWorld
  • cocos2dx在xcode下开发,编译到android上(2)
  • cocos2d 设置屏幕默认方向
  • Cocos2d-x 2.0 之 Actions “三板斧” 之一
  • cocos2d-x学习笔记(22)--地图的使用2(TMX) --Z-Order、AnchorPoi
  • cocos2d-x学习笔记(18)--游戏打包(windows平台)
  • cocos2d-x学习笔记(16)--spritesheet(精灵表单)
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1