diff options
author | Daniel Neus <[email protected]> | 2017-01-06 17:35:55 +0100 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2017-01-06 17:40:15 +0100 |
commit | 1737a4a5b67c2db768d8c80e0f79d7ba0b73d73f (patch) | |
tree | fdf53c2a33b886020fe47d2b2c0d03661d1f98cc /src/build-data/buildh.in | |
parent | 94d9b3a81abb5b2b1db782466abeff2833e94fc3 (diff) |
remove "timestamp" and "proc_info" from BOTAN_ENTROPY_DEFAULT_SOURCES
these don't exist anymore
Diffstat (limited to 'src/build-data/buildh.in')
-rw-r--r-- | src/build-data/buildh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index ba6eee97d..e65aa3ed3 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -123,14 +123,14 @@ /* * Specifies (in order) the list of entropy sources that will be used -* to seed an in-memory RNG. The first few in the default list -* ("timer", "proc_info", etc) do not count as contributing any entropy +* to seed an in-memory RNG. The first in the default list: "rdseed" and "rdrand" +* do not count as contributing any entropy * but are included as they are fast and help protect against a * seriously broken system RNG. */ #define BOTAN_ENTROPY_DEFAULT_SOURCES \ - { "timestamp", "rdseed", "rdrand", "proc_info", \ - "darwin_secrandom", "dev_random", "win32_cryptoapi", "proc_walk", "system_stats" } + { "rdseed", "rdrand", "darwin_secrandom", "dev_random", \ + "win32_cryptoapi", "proc_walk", "system_stats" } /* Multiplier on a block cipher's native parallelism */ |