Botan 3.3.0
Crypto and TLS for C&
rdseed.h
Go to the documentation of this file.
1/*
2* Entropy Source Using Intel's rdseed instruction
3* (C) 2015 Jack Lloyd, Daniel Neus
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_ENTROPY_SRC_RDSEED_H_
9#define BOTAN_ENTROPY_SRC_RDSEED_H_
10
11#include <botan/entropy_src.h>
12
13namespace Botan {
14
15/**
16* Entropy source using the rdseed instruction first introduced on
17* Intel's Broadwell architecture.
18*/
20 public:
21 std::string name() const override { return "rdseed"; }
22
23 size_t poll(RandomNumberGenerator& rng) override;
24};
25
26} // namespace Botan
27
28#endif
std::string name() const override
Definition rdseed.h:21
size_t poll(RandomNumberGenerator &rng) override
Definition rdseed.cpp:58
int(* final)(unsigned char *, CTX *)