Buckets:
| //===----------------------------------------------------------------------===// | |
| // | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | |
| // See https://llvm.org/LICENSE.txt for license information. | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
| // | |
| //===----------------------------------------------------------------------===// | |
| // Must be defined before including stdlib.h to enable rand_s(). | |
| _LIBCPP_BEGIN_NAMESPACE_STD | |
| random_device::random_device(const string& __token) { | |
| if (__token != "/dev/urandom") | |
| std::__throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); | |
| } | |
| random_device::~random_device() {} | |
| unsigned random_device::operator()() { | |
| unsigned r; | |
| size_t n = sizeof(r); | |
| int err = getentropy(&r, n); | |
| if (err) | |
| std::__throw_system_error(errno, "random_device getentropy failed"); | |
| return r; | |
| } | |
| random_device::random_device(const string&) {} | |
| random_device::~random_device() {} | |
| unsigned random_device::operator()() { return arc4random(); } | |
| random_device::random_device(const string& __token) : __f_(open(__token.c_str(), O_RDONLY)) { | |
| if (__f_ < 0) | |
| std::__throw_system_error(errno, ("random_device failed to open " + __token).c_str()); | |
| } | |
| random_device::~random_device() { close(__f_); } | |
| unsigned random_device::operator()() { | |
| unsigned r; | |
| size_t n = sizeof(r); | |
| char* p = reinterpret_cast<char*>(&r); | |
| while (n > 0) { | |
| ssize_t s = read(__f_, p, n); | |
| if (s == 0) | |
| std::__throw_system_error(ENOMSG, "random_device got EOF"); | |
| if (s == -1) { | |
| if (errno != EINTR) | |
| std::__throw_system_error(errno, "random_device got an unexpected error"); | |
| continue; | |
| } | |
| n -= static_cast<size_t>(s); | |
| p += static_cast<size_t>(s); | |
| } | |
| return r; | |
| } | |
| random_device::random_device(const string& __token) { | |
| if (__token != "/dev/urandom") | |
| std::__throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); | |
| int error = nacl_secure_random_init(); | |
| if (error) | |
| std::__throw_system_error(error, ("random device failed to open " + __token).c_str()); | |
| } | |
| random_device::~random_device() {} | |
| unsigned random_device::operator()() { | |
| unsigned r; | |
| size_t n = sizeof(r); | |
| size_t bytes_written; | |
| int error = nacl_secure_random(&r, n, &bytes_written); | |
| if (error != 0) | |
| std::__throw_system_error(error, "random_device failed getting bytes"); | |
| else if (bytes_written != n) | |
| std::__throw_runtime_error("random_device failed to obtain enough bytes"); | |
| return r; | |
| } | |
| random_device::random_device(const string& __token) { | |
| if (__token != "/dev/urandom") | |
| std::__throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); | |
| } | |
| random_device::~random_device() {} | |
| unsigned random_device::operator()() { | |
| unsigned r; | |
| errno_t err = rand_s(&r); | |
| if (err) | |
| std::__throw_system_error(err, "random_device rand_s failed."); | |
| return r; | |
| } | |
| random_device::random_device(const string& __token) { | |
| if (__token != "/dev/urandom") | |
| std::__throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); | |
| } | |
| random_device::~random_device() {} | |
| unsigned random_device::operator()() { | |
| // Implicitly link against the vDSO system call ABI without | |
| // requiring the final link to specify -lzircon explicitly when | |
| // statically linking libc++. | |
| // The system call cannot fail. It returns only when the bits are ready. | |
| unsigned r; | |
| _zx_cprng_draw(&r, sizeof(r)); | |
| return r; | |
| } | |
| double random_device::entropy() const noexcept { | |
| int ent; | |
| if (::ioctl(__f_, RNDGETENTCNT, &ent) < 0) | |
| return 0; | |
| if (ent < 0) | |
| return 0; | |
| if (ent > std::numeric_limits<result_type>::digits) | |
| return std::numeric_limits<result_type>::digits; | |
| return ent; | |
| return std::numeric_limits<result_type>::digits; | |
| return 0; | |
| } | |
| _LIBCPP_END_NAMESPACE_STD | |
Xet Storage Details
- Size:
- 5.08 kB
- Xet hash:
- 29474cffc325af2f4018b57d531f27f87e39024b89697f61a8b8748c7712cb7c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.