zoukankan      html  css  js  c++  java
  • C++ MD5类头文件

    发表时间:2007-8-7 13:21:00

    /******************************************************************************
     *  Copyright (C) 2000 by Robert Hubley.                                      *
     *  All rights reserved.                                                      *
     *                                                                            *
     *  This software is provided ``AS IS'' and any express or implied            *
     *  warranties, including, but not limited to, the implied warranties of      *
     *  merchantability and fitness for a particular purpose, are disclaimed.     *
     *  In no event shall the authors be liable for any direct, indirect,         *
     *  incidental, special, exemplary, or consequential damages (including, but  *
     *  not limited to, procurement of substitute goods or services; loss of use, *
     *  data, or profits; or business interruption) however caused and on any     *
     *  theory of liability, whether in contract, strict liability, or tort       *
     *  (including negligence or otherwise) arising in any way out of the use of  *
     *  this software, even if advised of the possibility of such damage.         *
     *                                                                            *
     ******************************************************************************

     MD5.H - header file for MD5C.C
     
       Port to Win32 DLL by Robert Hubley 1/5/2000

       Original Copyright:

      Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
      rights reserved.

      License to copy and use this software is granted provided that it
      is identified as the "RSA Data Security, Inc. MD5 Message-Digest
      Algorithm" in all material mentioning or referencing this software
      or this function.

      License is also granted to make and use derivative works provided
      that such works are identified as "derived from the RSA Data
      Security, Inc. MD5 Message-Digest Algorithm" in all material
      mentioning or referencing the derived work.
      
      RSA Data Security, Inc. makes no representations concerning either
      the merchantability of this software or the suitability of this
      software for any particular purpose. It is provided "as is"
      without express or implied warranty of any kind.

      These notices must be retained in any copies of any part of this
      documentation and/or software.
    */
    /******************************************************************************
     *  Copyright (C) 2000 by Robert Hubley.                                      *
     *  All rights reserved.                                                      *
     *                                                                            *
     *  This software is provided ``AS IS'' and any express or implied            *
     *  warranties, including, but not limited to, the implied warranties of      *
     *  merchantability and fitness for a particular purpose, are disclaimed.     *
     *  In no event shall the authors be liable for any direct, indirect,         *
     *  incidental, special, exemplary, or consequential damages (including, but  *
     *  not limited to, procurement of substitute goods or services; loss of use, *
     *  data, or profits; or business interruption) however caused and on any     *
     *  theory of liability, whether in contract, strict liability, or tort       *
     *  (including negligence or otherwise) arising in any way out of the use of  *
     *  this software, even if advised of the possibility of such damage.         *
     *                                                                            *
     ******************************************************************************
    */

    /******************************************************************************
     *   2002-4-18 Modified by Liguangyi.               *
     *   struct MD5_CTX ==> class MD5_CTX.                  *
     *   Take off the Globals Functions                                           *
     ******************************************************************************
    */

    #ifndef _LGY_MD5_H
    #define _LGY_MD5_H

    /* MD5 Class. */
    class MD5_CTX {
    public:
     MD5_CTX();
     virtual ~MD5_CTX();
     void MD5Update ( unsigned char *input, unsigned int inputLen);
     void MD5Final (unsigned char digest[16]);

    private:
     unsigned long int state[4];     /* state (ABCD) */
     unsigned long int count[2];     /* number of bits, modulo 2^64 (lsb first) */
     unsigned char buffer[64];       /* input buffer */
     unsigned char PADDING[64];  /* What? */

    private:
     void MD5Init ();
     void MD5Transform (unsigned long int state[4], unsigned char block[64]);
     void MD5_memcpy (unsigned char* output, unsigned char* input,unsigned int len);
     void Encode (unsigned char *output, unsigned long int *input,unsigned int len);
     void Decode (unsigned long int *output, unsigned char *input, unsigned int len);
     void MD5_memset (unsigned char* output,int value,unsigned int len);
    };

    #endif

  • 相关阅读:
    css常用小知识点汇总(一)
    TweenMax的GSAP(GreenSock动画平台)GSAP,专业的Web动画库
    前端node面试题之---对比JS和NodeJS的区别
    Math.min() Math.max() Math.min().apply() Math.max() .apply()该如何使用???
    zrender的线性渐变
    webkit内核的浏览器常见7种分别是..
    node创建项目,要ejs模板引擎,不要jade怎么办?
    【正则】——深入正则表达式,手写常用正则表单验证
    【bug】—— ios scroll 滚动穿透
    【bug】—— H5页面在 ios 端滑动不流畅的问题
  • 原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/1446266.html
Copyright © 2011-2022 走看看