⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 digcalc.c

📁 SyncML手册及其编程
💻 C
字号:
/* * Copyright Notice * Copyright (c) Ericsson, IBM, Lotus, Matsushita Communication  * Industrial Co., Ltd., Motorola, Nokia, Openwave Systems, Inc.,  * Palm, Inc., Psion, Starfish Software, Symbian, Ltd. (2001). * All Rights Reserved. * Implementation of all or part of any Specification may require  * licenses under third party intellectual property rights,  * including without limitation, patent rights (such a third party  * may or may not be a Supporter). The Sponsors of the Specification  * are not responsible and shall not be held responsible in any  * manner for identifying or failing to identify any or all such  * third party intellectual property rights. *  * THIS DOCUMENT AND THE INFORMATION CONTAINED HEREIN ARE PROVIDED  * ON AN "AS IS" BASIS WITHOUT WARRANTY OF ANY KIND AND ERICSSON, IBM,  * LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO. LTD, MOTOROLA,  * NOKIA, PALM INC., PSION, STARFISH SOFTWARE AND ALL OTHER SYNCML  * SPONSORS DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING  * BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION  * HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT  * SHALL ERICSSON, IBM, LOTUS, MATSUSHITA COMMUNICATION INDUSTRIAL CO.,  * LTD, MOTOROLA, NOKIA, PALM INC., PSION, STARFISH SOFTWARE OR ANY  * OTHER SYNCML SPONSOR BE LIABLE TO ANY PARTY FOR ANY LOSS OF  * PROFITS, LOSS OF BUSINESS, LOSS OF USE OF DATA, INTERRUPTION OF  * BUSINESS, OR FOR DIRECT, INDIRECT, SPECIAL OR EXEMPLARY, INCIDENTAL,  * PUNITIVE OR CONSEQUENTIAL DAMAGES OF ANY KIND IN CONNECTION WITH  * THIS DOCUMENT OR THE INFORMATION CONTAINED HEREIN, EVEN IF ADVISED  * OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. *  * The above notice and this paragraph must be included on all copies  * of this document that are made. *  *//*   The following code implements the calculations of H(A1), H(A2),   request-digest and response-digest, and a test program which computes   the values used in the example of section 3.5. It uses the MD5   implementation from RFC 1321.File "digcalc.c":*/#include "syncml_tk_prefix_file.h" // %%% luz: needed for precompiled headers in eVC++#include <global.h>#include <md5.h>#include <xptport.h>#include "digcalc.h"void CvtHex(    IN HASH Bin,    OUT HASHHEX Hex    ){    unsigned short i;    unsigned char j;    for (i = 0; i < HASHLEN; i++) {        j = (Bin[i] >> 4) & 0xf;        if (j <= 9)            Hex[i*2] = (j + '0');         else            Hex[i*2] = (j + 'a' - 10);        j = Bin[i] & 0xf;        if (j <= 9)            Hex[i*2+1] = (j + '0');         else            Hex[i*2+1] = (j + 'a' - 10);    };    Hex[HASHHEXLEN] = '\0';}/* calculate H(A1) as per spec */void DigestCalcHA1(    IN char * pszAlg,    IN char * pszUserName,    IN char * pszRealm,    IN char * pszPassword,    IN char * pszNonce,    IN char * pszCNonce,    OUT HASHHEX SessionKey    ){      MD5_CTX Md5Ctx;      HASH HA1;      MD5Init(&Md5Ctx);      MD5Update(&Md5Ctx, pszUserName, xppStrlen(pszUserName));      MD5Update(&Md5Ctx, ":", 1);      MD5Update(&Md5Ctx, pszRealm, xppStrlen(pszRealm));      MD5Update(&Md5Ctx, ":", 1);      MD5Update(&Md5Ctx, pszPassword, xppStrlen(pszPassword));      MD5Final(HA1, &Md5Ctx);      if (xppStricmp(pszAlg, "md5-sess") == 0) {            MD5Init(&Md5Ctx);            MD5Update(&Md5Ctx, HA1, HASHLEN);            MD5Update(&Md5Ctx, ":", 1);            MD5Update(&Md5Ctx, pszNonce, xppStrlen(pszNonce));            MD5Update(&Md5Ctx, ":", 1);            MD5Update(&Md5Ctx, pszCNonce, xppStrlen(pszCNonce));            MD5Final(HA1, &Md5Ctx);      };      CvtHex(HA1, SessionKey);}/* calculate request-digest/response-digest as per HTTP Digest spec */void DigestCalcResponse(    IN HASHHEX HA1,           /* H(A1) */    IN char * pszNonce,       /* nonce from server */    IN char * pszNonceCount,  /* 8 hex digits */    IN char * pszCNonce,      /* client nonce */    IN char * pszQop,         /* qop-value: "", "auth", "auth-int" */    IN char * pszMethod,      /* method from the request */    IN char * pszDigestUri,   /* requested URL */    IN HASHHEX HEntity,       /* H(entity body) if qop="auth-int" */    OUT HASHHEX Response      /* request-digest or response-digest */    ){      MD5_CTX Md5Ctx;      HASH HA2;      HASH RespHash;       HASHHEX HA2Hex;      // calculate H(A2)      MD5Init(&Md5Ctx);      MD5Update(&Md5Ctx, pszMethod, xppStrlen(pszMethod));      MD5Update(&Md5Ctx, ":", 1);      MD5Update(&Md5Ctx, pszDigestUri, xppStrlen(pszDigestUri));      if (xppStricmp(pszQop, "auth-int") == 0) {            MD5Update(&Md5Ctx, ":", 1);            MD5Update(&Md5Ctx, HEntity, HASHHEXLEN);      };      MD5Final(HA2, &Md5Ctx);       CvtHex(HA2, HA2Hex);      // calculate response      MD5Init(&Md5Ctx);      MD5Update(&Md5Ctx, HA1, HASHHEXLEN);      MD5Update(&Md5Ctx, ":", 1);      MD5Update(&Md5Ctx, pszNonce, xppStrlen(pszNonce));      MD5Update(&Md5Ctx, ":", 1);      if (*pszQop) {          MD5Update(&Md5Ctx, pszNonceCount, xppStrlen(pszNonceCount));          MD5Update(&Md5Ctx, ":", 1);          MD5Update(&Md5Ctx, pszCNonce, xppStrlen(pszCNonce));          MD5Update(&Md5Ctx, ":", 1);          MD5Update(&Md5Ctx, pszQop, xppStrlen(pszQop));          MD5Update(&Md5Ctx, ":", 1);      };      MD5Update(&Md5Ctx, HA2Hex, HASHHEXLEN);      MD5Final(RespHash, &Md5Ctx);      CvtHex(RespHash, Response);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -