esp8266ndn
NDN Arduino library for ESP8266 and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
random.hpp
Go to the documentation of this file.
1 #ifndef ESP8266NDN_PORT_RANDOM_HPP
2 #define ESP8266NDN_PORT_RANDOM_HPP
3 
4 #include <cstdint>
5 #include <cstdlib>
6 
7 namespace esp8266ndn {
8 namespace ndnph_port {
9 
16 class RandomSource {
17 public:
18  RandomSource() = delete;
19 
20  static bool generate(uint8_t* output, size_t count);
21 };
22 
23 } // namespace ndnph_port
24 } // namespace esp8266ndn
25 
26 namespace ndnph {
27 namespace port {
29 } // namespace port
30 } // namespace ndnph
31 
32 #endif // ESP8266NDN_PORT_RANDOM_HPP
Hardware random bytes generator.
Definition: random.hpp:16
static bool generate(uint8_t *output, size_t count)
Definition: autoconfig.hpp:24
void output(const Encodable &packet, std::ostream &os=std::cout)
Write an Encodable to output stream.
Definition: io.hpp:33
esp8266ndn::ndnph_port::RandomSource RandomSource
Definition: random.hpp:28
Definition: fs.hpp:33