我使用此代码从boost生成UUID:
<a href="<?php echo $this->url(array('page' => $page)); ?>">
它给出了十六进制数字,如:&#34; 0xCC5B9F6946EF4448A89EDB2042E0B084&#34;。
我的问题是:如何将此字符串(128位十六进制数字)转换为128个长整数或64位长整数(可以放宽更高的数据)?
标准C环礁和C ++ std :: stoll在这种情况下没有帮助。
UUID倾向于随机生成质量。
谢谢!
答案 0 :(得分:0)
它以这种方式工作,但熵需要研究:
typedef unsigned long long ull;
//...
ull ui64 = 0;
const int startPosition = 18;//can vary - we can use rand() too
const int lengthHex = 14;//can vary - we can use rand() too
boost::uuids::random_generator gen;
boost::uuids::uuid uuidId = gen();
string randomUUID = boost::lexical_cast<std::string>(uuidId);
std::remove( randomUUID.begin(), randomUUID.end(), '-');
randomUUID = "0x" + randomUUID.substr(startPosition, lengthHex);
ui64 = std::stoull(randomUUID, 0, 16); //random out of UUID
std::cout << ui64 << '\n';
答案 1 :(得分:0)
如果您只想要一个随机的64位无符号整数,那么您可以使用标准C ++ 11:
std::mt19937_64 engine(std::random_device{}());
std::uniform_int_distribution<uint64_t> distribution;
auto ui64 = distribution(engine);