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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef NO_YARROW
  2. /* ====================================================================
  3.  * The Vovida Software License, Version 1.0 
  4.  * 
  5.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  6.  * 
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  * 
  19.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  20.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  21.  *    not be used to endorse or promote products derived from this
  22.  *    software without prior written permission. For written
  23.  *    permission, please contact vocal@vovida.org.
  24.  *
  25.  * 4. Products derived from this software may not be called "VOCAL", nor
  26.  *    may "VOCAL" appear in their name, without prior written
  27.  *    permission of Vovida Networks, Inc.
  28.  * 
  29.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  30.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  31.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  32.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  33.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  34.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  35.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  36.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  37.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  38.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  39.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  40.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  41.  * DAMAGE.
  42.  * 
  43.  * ====================================================================
  44.  * 
  45.  * This software consists of voluntary contributions made by Vovida
  46.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  47.  * Inc.  For more information on Vovida Networks, Inc., please see
  48.  * <http://www.vovida.org/>.
  49.  *
  50.  */
  51. #include "CryptoRandom.hxx"
  52. #include "YarrowPseudoRandom.hxx"
  53. #include "cpLog.h"
  54. extern "C" {
  55.         int yarrow_verbose = 0;
  56. };
  57. unsigned char YarrowPseudoRandom::entropyBuf[ENTROPY_BUF_SIZE];
  58. YarrowPseudoRandom* YarrowPseudoRandom::yarrowInst = 0; 
  59. YarrowPseudoRandom::YarrowPseudoRandom()
  60. {
  61.     unsigned devrandom;
  62.     CryptoRandom crypto;
  63.     int len;
  64.     len = crypto.getRandom(entropyBuf, ENTROPY_BUF_SIZE);
  65.     if (len == ENTROPY_BUF_SIZE)
  66.     {
  67. cpLog(LOG_DEBUG, "New seed value generated");
  68.     }
  69.     else
  70.     {
  71. cpLog(LOG_DEBUG, "Failed to generate new seed value");
  72.     }
  73.     //initialize yarrow
  74.     int ret = Yarrow_Init(&yarrow, NULL);
  75.     if (ret != YARROW_OK && ret != YARROW_NOT_SEEDED)
  76.     {
  77. cpLog(LOG_DEBUG, "Yarrow not initialized");
  78. //throw exception.
  79.     }
  80.     else
  81.     {
  82. cpLog(LOG_DEBUG, "Yarrow initialized successfully");
  83.         
  84.         Yarrow_Input(&yarrow, devrandom, entropyBuf, sizeof(entropyBuf), sizeof(entropyBuf)*3);
  85.     }
  86. }
  87.     
  88.     
  89. YarrowPseudoRandom::~YarrowPseudoRandom()
  90. {
  91. }
  92.     
  93.     
  94. YarrowPseudoRandom* YarrowPseudoRandom::instance()
  95. {
  96.     if (yarrowInst == 0)
  97.     {
  98. yarrowInst = new YarrowPseudoRandom;
  99.     }
  100.     return yarrowInst;
  101. }
  102.     
  103. int YarrowPseudoRandom::getRandom(unsigned char* buf, int num)
  104. {
  105.    int ret = Yarrow_Output(&yarrow, buf, num);
  106.    return ret;
  107. }
  108. #endif