/usr/include/botan-2/botan/rdrand_rng.h is in libbotan-2-dev 2.4.0-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* RDRAND RNG
* (C) 2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_RNG_RDRAND_H_
#define BOTAN_RNG_RDRAND_H_
#include <botan/rng.h>
namespace Botan {
class BOTAN_PUBLIC_API(2,0) RDRAND_RNG final : public Hardware_RNG
{
public:
/**
* On correctly working hardware, RDRAND is always supposed to
* succeed within a set number of retries. If after that many
* retries RDRAND has still not suceeded, sets ok = false and
* returns 0.
*/
static uint32_t rdrand_status(bool& ok);
/*
* Calls RDRAND until it succeeds, this could hypothetically
* loop forever on broken hardware.
*/
static uint32_t rdrand();
/**
* Constructor will throw if CPU does not have RDRAND bit set
*/
RDRAND_RNG();
/**
* Uses RDRAND to produce output
*/
void randomize(uint8_t out[], size_t out_len) override;
/*
* No way to provide entropy to RDRAND generator, so add_entropy is ignored
*/
void add_entropy(const uint8_t[], size_t) override
{ /* no op */ }
/*
* No way to reseed RDRAND generator, so reseed is ignored
*/
size_t reseed(Entropy_Sources&, size_t, std::chrono::milliseconds) override
{ return 0; /* no op */ }
std::string name() const override { return "RDRAND"; }
bool is_seeded() const override { return true; }
};
}
#endif
|