1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
* libjingle
* Copyright 2004--2005, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "talk/base/helpers.h"
#include "talk/base/time.h"
#include <cstdlib>
#include <cassert>
// TODO: Change this implementation to use OpenSSL's RAND_bytes. That will
// give cryptographically random values on all platforms.
#ifdef WIN32
#include <time.h>
#include <windows.h>
#endif
namespace cricket {
static long g_seed = 1L;
int GetRandom() {
return ((g_seed = g_seed * 214013L + 2531011L) >> 16) & 0x7fff;
}
static bool s_initrandom;
long GetRandomSeed() {
return g_seed;
}
void SetRandomSeed(unsigned long seed)
{
s_initrandom = true;
g_seed = (long)seed;
}
void InitRandom(const char *client_unique, size_t len) {
// Hash this string - unique per client
uint32 hash = 0;
if (client_unique != NULL) {
for (int i = 0; i < (int)len; i++)
hash = ((hash << 2) + hash) + client_unique[i];
}
// Now initialize the seed against a high resolution
// counter
unsigned long seed = GetRandomSeed();
#ifdef WIN32
bool success = false;
HCRYPTPROV hProv = NULL;
if (CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
success = (FALSE != CryptGenRandom(hProv,
sizeof(seed),
reinterpret_cast<BYTE*>(&seed)));
CryptReleaseContext(hProv, 0);
}
if (!success) {
LARGE_INTEGER big;
QueryPerformanceCounter(&big);
seed = big.LowPart;
}
#else
seed = talk_base::Time();
#endif
SetRandomSeed(seed ^ hash);
}
const char BASE64[64] = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
};
// Generates a random string of the given length. We generate base64 values so
// that they will be printable, though that's not necessary.
std::string CreateRandomString(int len) {
// Random number generator should of been initialized!
assert(s_initrandom);
if (!s_initrandom)
InitRandom(0, 0);
std::string str;
for (int i = 0; i < len; i++)
#if defined(_MSC_VER) && _MSC_VER < 1300
str.insert(str.end(), BASE64[GetRandom() & 63]);
#else
str.push_back(BASE64[GetRandom() & 63]);
#endif
return str;
}
uint32 CreateRandomId() {
uint8 b1 = (uint8)(GetRandom() & 255);
uint8 b2 = (uint8)(GetRandom() & 255);
uint8 b3 = (uint8)(GetRandom() & 255);
uint8 b4 = (uint8)(GetRandom() & 255);
return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24);
}
bool IsBase64Char(char ch) {
return (('A' <= ch) && (ch <= 'Z')) ||
(('a' <= ch) && (ch <= 'z')) ||
(('0' <= ch) && (ch <= '9')) ||
(ch == '+') || (ch == '/');
}
bool IsBase64Encoded(const std::string& str) {
for (size_t i = 0; i < str.size(); ++i) {
if (!IsBase64Char(str.at(i)))
return false;
}
return true;
}
} // namespace cricket
|