digest.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0
  3.  *
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  *
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.        
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  *
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.    
  41.  *
  42.  * ====================================================================
  43.  *
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  *
  50.  
  51.  
  52.  
  53. *RFC 2617                  HTTP Authentication                  June 1999
  54. *
  55. *
  56. *  Full Copyright Statement
  57. *
  58. *   Copyright (C) The Internet Society (1999).  All Rights Reserved.
  59. *
  60. *   This document and translations of it may be copied and furnished to
  61. *   others, and derivative works that comment on or otherwise explain it
  62. *   or assist in its implementation may be prepared, copied, published
  63. *   and distributed, in whole or in part, without restriction of any
  64. *   kind, provided that the above copyright notice and this paragraph are
  65. *   included on all such copies and derivative works.  However, this
  66. *   document itself may not be modified in any way, such as by removing
  67. *   the copyright notice or references to the Internet Society or other
  68. *   Internet organizations, except as needed for the purpose of
  69. *   developing Internet standards in which case the procedures for
  70. *   copyrights defined in the Internet Standards process must be
  71. *   followed, or as required to translate it into languages other than
  72. *   English.
  73.  
  74. *   The limited permissions granted above are perpetual and will not be
  75. *   revoked by the Internet Society or its successors or assigns.
  76.  
  77. *   This document and the information contained herein is provided on an
  78. *   "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  79. *   TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  80. *   BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  81. *   HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  82. *   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. 
  83. */
  84. #include "digest.hxx"
  85. /*
  86. #define HASHLEN 16
  87. typedef char HASH[HASHLEN];
  88. #define HASHHEXLEN 32
  89. typedef char HASHHEX[HASHHEXLEN+1];
  90. #define IN
  91. #define OUT
  92.  
  93.  
  94.  
  95. #include <stdio.h>
  96. #include <global.h>
  97. #include <string.h>
  98. #include "vmd5.h"   
  99. #include "support.hxx"
  100. */
  101. /* calculate H(A1) as per HTTP Digest spec */
  102. void DigestCalcHA1(
  103.     IN char * pszAlg,
  104.     IN char * pszUserName,
  105.     IN char * pszRealm,
  106.     IN char * pszPassword,
  107.     IN char * pszNonce,
  108.     IN char * pszCNonce,
  109.     OUT HASHHEX SessionKey
  110. );
  111. /* calculate request-digest/response-digest as per HTTP Digest spec */
  112. void DigestCalcResponse(
  113.     IN HASHHEX HA1,            /* H(A1) */
  114.     IN char * pszNonce,        /* nonce from server */
  115.     IN char * pszNonceCount,   /* 8 hex digits */
  116.     IN char * pszCNonce,       /* client nonce */
  117.     IN char * pszQop,          /* qop-value: "", "auth", "auth-int" */
  118.     IN char * pszMethod,       /* method from the request */
  119.     IN char * pszDigestUri,    /* requested URL */
  120.     IN HASHHEX HEntity,        /* H(entity body) if qop="auth-int" */
  121.     OUT HASHHEX Response      /* request-digest or response-digest */
  122. );
  123. void CvtHex(
  124.     IN HASH Bin,
  125.     OUT HASHHEX Hex
  126. )
  127. {
  128.     unsigned short i;
  129.     unsigned char j;
  130.     for (i = 0; i < HASHLEN; i++)
  131.     {
  132.         j = (Bin[i] >> 4) & 0xf;
  133.         if (j <= 9)
  134.             Hex[i*2] = (j + '0');
  135.         else
  136.             Hex[i*2] = (j + 'a' - 10);
  137.         j = Bin[i] & 0xf;
  138.         if (j <= 9)
  139.             Hex[i*2 + 1] = (j + '0');
  140.         else
  141.             Hex[i*2 + 1] = (j + 'a' - 10);
  142.     }
  143.     Hex[HASHHEXLEN] = '';
  144. }
  145. /* calculate H(A1) as per spec */
  146. void DigestCalcHA1(
  147.     IN char * pszAlg,
  148.     IN char * pszUserName,
  149.     IN char * pszRealm,
  150.     IN char * pszPassword,
  151.     IN char * pszNonce,
  152.     IN char * pszCNonce,
  153.     OUT HASHHEX SessionKey
  154. )
  155. {
  156.     struct MD5Context Md5Ctx;
  157.     HASH HA1;
  158.     MD5Init(&Md5Ctx);
  159.     MD5Update(&Md5Ctx, (unsigned char*)(pszUserName), strlen(pszUserName));
  160.     MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  161.     MD5Update(&Md5Ctx, (unsigned char*)(pszRealm), strlen(pszRealm));
  162.     MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  163.     MD5Update(&Md5Ctx, (unsigned char*)(pszPassword), strlen(pszPassword));
  164.     MD5Final((unsigned char*)(HA1), &Md5Ctx);
  165.     if (strcmp(pszAlg, "md5-sess") == 0)
  166.     {
  167.         MD5Init(&Md5Ctx);
  168.         MD5Update(&Md5Ctx, (unsigned char*)(HA1), HASHLEN);
  169.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  170.         MD5Update(&Md5Ctx, (unsigned char*)(pszNonce), strlen(pszNonce));
  171.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  172.         MD5Update(&Md5Ctx, (unsigned char*)(pszCNonce), strlen(pszCNonce));
  173.         MD5Final((unsigned char*)(HA1), &Md5Ctx);
  174.     }
  175.     CvtHex(HA1, SessionKey);
  176. }
  177. /* calculate request-digest/response-digest as per HTTP Digest spec */
  178. void DigestCalcResponse(
  179.     IN HASHHEX HA1,            /* H(A1) */
  180.     IN char * pszNonce,        /* nonce from server */
  181.     IN char * pszNonceCount,   /* 8 hex digits */
  182.     IN char * pszCNonce,       /* client nonce */
  183.     IN char * pszQop,          /* qop-value: "", "auth", "auth-int" */
  184.     IN char * pszMethod,       /* method from the request */
  185.     IN char * pszDigestUri,    /* requested URL */
  186.     IN HASHHEX HEntity,        /* H(entity body) if qop="auth-int" */
  187.     OUT HASHHEX Response      /* request-digest or response-digest */
  188. )
  189. {
  190.     struct MD5Context Md5Ctx;
  191.     HASH HA2;
  192.     HASH RespHash;
  193.     HASHHEX HA2Hex;
  194.     // calculate H(A2)
  195.     MD5Init(&Md5Ctx);
  196.     MD5Update(&Md5Ctx, (unsigned char*)(pszMethod), strlen(pszMethod));
  197.     MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  198.     MD5Update(&Md5Ctx, (unsigned char*)(pszDigestUri), strlen(pszDigestUri));
  199.     if (strcmp(pszQop, "auth-int") == 0)
  200.     {
  201.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  202.         MD5Update(&Md5Ctx, (unsigned char*)(HEntity), HASHHEXLEN);
  203.     }
  204.     MD5Final((unsigned char*)(HA2), &Md5Ctx);
  205.     CvtHex(HA2, HA2Hex);
  206.     // calculate response
  207.     MD5Init(&Md5Ctx);
  208.     MD5Update(&Md5Ctx, (unsigned char*)(HA1), HASHHEXLEN);
  209.     MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  210.     MD5Update(&Md5Ctx, (unsigned char*)(pszNonce), strlen(pszNonce));
  211.     MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  212.     if (*pszQop)
  213.     {
  214.         MD5Update(&Md5Ctx, (unsigned char*)(pszNonceCount), strlen(pszNonceCount));
  215.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  216.         MD5Update(&Md5Ctx, (unsigned char*)(pszCNonce), strlen(pszCNonce));
  217.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  218.         MD5Update(&Md5Ctx, (unsigned char*)(pszQop), strlen(pszQop));
  219.         MD5Update(&Md5Ctx, (unsigned char*)(":"), 1);
  220.     }
  221.     MD5Update(&Md5Ctx, (unsigned char*)(HA2Hex), HASHHEXLEN);
  222.     MD5Final((unsigned char*)(RespHash), &Md5Ctx);
  223.     CvtHex(RespHash, Response);
  224. }
  225. #if 0
  226. void main(int argc, char ** argv)
  227. {
  228.     char * pszNonce = "dcd98b7102dd2f0e8b11d0f600bfb0c093";
  229.     char * pszCNonce = "0a4f113b";
  230.     char * pszUser = "Mufasa";
  231.     char * pszRealm = "testrealm@host.com";
  232.     char * pszPass = "Circle Of Life";
  233.     char * pszAlg = "md5";
  234.     char szNonceCount[9] = "00000001";
  235.     char * pszMethod = "GET";
  236.     char * pszQop = "auth";
  237.     char * pszURI = "/dir/index.html";
  238.     HASHHEX HA1;
  239.     HASHHEX HA2 = "";
  240.     HASHHEX Response;
  241.     DigestCalcHA1(pszAlg, pszUser, pszRealm, pszPass, pszNonce,
  242.                   pszCNonce, HA1);
  243.     DigestCalcResponse(HA1, pszNonce, szNonceCount, pszCNonce, pszQop,
  244.                        pszMethod, pszURI, HA2, Response);
  245.     printf("Response = %sn", Response);
  246. }
  247. #endif