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

流媒体/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. static const char* const SdpEncryptkey_cxx_Version =
  51.     "$Id: SdpEncryptkey.cxx,v 1.12 2001/06/29 05:42:52 bko Exp $";
  52. //#include <assert.h>
  53. #include <cassert>
  54. #include <strstream>
  55. #include <string>
  56. #include "SdpEncryptkey.hxx"
  57. #include "support.hxx"
  58. ///
  59. SdpEncryptkey::SdpEncryptkey(string& s)
  60. {
  61.     // k=<method>:<encryption key> or
  62.     // k=<method> for "prompt" method
  63.     // For "uri" method, the <encryption key> field may contains ":",
  64.     // we can't use split() with ":"
  65.     string tmp_string = s.substr(0, 3);
  66. #if defined (__SUNPRO_CC) || (defined(__GNUC__) && (__GNUC__ > 2))
  67.     if (0 == (tmp_string.compare(0,3,"uri"))) // URI method
  68. #else 
  69.     if (0 == (tmp_string.compare("uri",0,3)))
  70. #endif 
  71.     {
  72.         encrypt_method = EncryptMethodURI;
  73.         encrypt_key = s.substr(4);
  74.     }
  75.     else
  76.     {
  77.         split_t encryptkeyList(split(s, ":"));
  78.         if (encryptkeyList.size() == 1) // prompt method
  79.         {
  80.             if (encryptkeyList[0] == SdpEncryptkeyMethodPrompt)
  81.             {
  82.                 encrypt_method = EncryptMethodPrompt;
  83.                 encrypt_key = "";
  84.             }
  85.             else
  86.             {
  87.                 cpLog(LOG_ERR, "SdpEncryptkey: Undefined Method: %s", encryptkeyList[0].c_str());
  88.                 cpLog(LOG_ERR, "SdpEncryptkey: or valid method but no required value");
  89.                 throw SdpExceptions(UNKNOWN_ENCRYPT_METHOD);
  90.             }
  91.         }
  92.         else if (encryptkeyList.size() == 2) // clear, base64, or URI
  93.         {
  94.             if (encryptkeyList[0] == SdpEncryptkeyMethodClear)
  95.             {
  96.                 encrypt_method = EncryptMethodClear;
  97.                 encrypt_key = encryptkeyList[1];
  98.             }
  99.             else if (encryptkeyList[0] == SdpEncryptkeyMethodBase64)
  100.             {
  101.                 encrypt_method = EncryptMethodBase64;
  102.                 encrypt_key = encryptkeyList[1];
  103.             }
  104.             else if (encryptkeyList[0] == SdpEncryptkeyMethodPrompt)
  105.             {
  106.                 // Prompt method should not have value
  107.                 // Log a warning and set empty value
  108.                 encrypt_method = EncryptMethodPrompt;
  109.                 encrypt_key = "";
  110.                 cpLog(LOG_WARNING, "SdpEncryptkey: Prompt method shouldn't have value");
  111.             }
  112.             else
  113.             {
  114.                 cpLog(LOG_ERR, "SdpEncryptkey: Undefined Method: %s", encryptkeyList[0].c_str());
  115.                 throw SdpExceptions(UNKNOWN_ENCRYPT_METHOD);
  116.             }
  117.         }
  118.         else  // bad "k=" line
  119.         {
  120.             cpLog(LOG_ERR, "SdpEncryptkey: bad k line: %s", s.c_str());
  121.             throw SdpExceptions(UNKNOWN_ENCRYPT_METHOD);
  122.         }
  123.     }
  124. }
  125. ///
  126. void
  127. SdpEncryptkey::encode (ostrstream& s)
  128. {
  129.     switch (encrypt_method)
  130.     {
  131.         case EncryptMethodClear:
  132.     s << "k=" << SdpEncryptkeyMethodClear << ':' << encrypt_key << "rn";
  133.     break;
  134.         case EncryptMethodBase64:
  135.     s << "k=" << SdpEncryptkeyMethodBase64 << ':' << encrypt_key << "rn";
  136.     break;
  137.         case EncryptMethodURI:
  138.     s << "k=" << SdpEncryptkeyMethodURI << ':' << encrypt_key << "rn";
  139.     break;
  140.         case EncryptMethodPrompt:
  141.     s << "k=" << SdpEncryptkeyMethodPrompt << "rn";
  142.     break;
  143.         default:     // Log an error for unknown method but don't terminate
  144.     cpLog(LOG_ERR, "SdpEncryptkey: unknown method: %d", encrypt_method);
  145.     }
  146. }    // SdpEncryptkey::encode
  147. ///
  148. bool
  149. SdpEncryptkey::dump ()
  150. {
  151.     cpLog(LOG_DEBUG, "ENCRYPTION KEY ------------");
  152.     switch (encrypt_method)
  153.     {
  154.         case EncryptMethodClear:
  155.         cpLog(LOG_DEBUG, "    Methodtt%s", SdpEncryptkeyMethodClear);
  156.         break;
  157.         case EncryptMethodBase64:
  158.         cpLog(LOG_DEBUG, "    Methodtt%s", SdpEncryptkeyMethodBase64);
  159.         break;
  160.         case EncryptMethodURI:
  161.         cpLog(LOG_DEBUG, "    Methodtt%s", SdpEncryptkeyMethodURI);
  162.         break;
  163.         case EncryptMethodPrompt:
  164.         cpLog(LOG_DEBUG, "    Methodtt%s", SdpEncryptkeyMethodPrompt);
  165.         break;
  166.         default:
  167.         cpLog(LOG_DEBUG, "    Methodtt%s", "unknown");
  168.     }
  169.     if (encrypt_key.size() > 0)
  170.         cpLog(LOG_DEBUG, "    Keyttt%s", encrypt_key.c_str());
  171.     return true;
  172. }