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

流媒体/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 <stdio.h>
  85. #include <global.h>
  86. #include <string.h>
  87. #include "vmd5.h"
  88. #include "support.hxx"
  89. #define HASHLEN 16
  90. typedef char HASH[HASHLEN];
  91. #define HASHHEXLEN 32
  92. typedef char HASHHEX[HASHHEXLEN + 1];
  93. #define IN const
  94. #define OUT
  95. /* calculate H(A1) as per HTTP Digest spec */
  96. extern void
  97.     DigestCalcHA1(
  98.         IN char * pszAlg,
  99.         IN char * pszUserName,
  100.         IN char * pszRealm,
  101.         IN char * pszPassword,
  102.         IN char * pszNonce,
  103.         IN char * pszCNonce,
  104.         OUT HASHHEX SessionKey
  105.     );
  106. /* calculate request-digest/response-digest as per HTTP Digest spec */
  107. extern void
  108.     DigestCalcResponse(
  109.         IN HASHHEX HA1,            /* H(A1) */
  110.         IN char * pszNonce,        /* nonce from server */
  111.         IN char * pszNonceCount,   /* 8 hex digits */
  112.         IN char * pszCNonce,       /* client nonce */
  113.         IN char * pszQop,          /* qop-value: "", "auth", "auth-int" */
  114.         IN char * pszMethod,       /* method from the request */
  115.         IN char * pszDigestUri,    /* requested URL */
  116.         IN HASHHEX HEntity,        /* H(entity body) if qop="auth-int" */
  117.         OUT HASHHEX Response      /* request-digest or response-digest */
  118.     );
  119. extern void
  120.     CvtHex(
  121.         IN HASH Bin,
  122.         OUT HASHHEX Hex
  123.     );