a C++ take on Fortuna CSPRNG implementation, as devised by Niels Fergusson and Bruce Schneier in Practical Cryptography 🍀
This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
surtur 8f0f29d190
All checks were successful
continuous-integration/drone/push Build is passing
generator: make some internal vars const
2022-01-26 22:43:22 +01:00
lib
.clang-format
.clang-tidy
.drone.starlark
.editorconfig
.gitattributes
.gitignore
.gitmodules
.pre-commit-config.yaml
accumulator.cpp
accumulator.h
CMakeLists.txt cmake: CMAKE_BUILD_TYPE MATCHES -> STREQUAL 2022-01-26 17:07:34 +01:00
do_task.cpp
do_task.h
entropy_src.h
event_adder_impl.h
event_adder.h
event_scheduler_impl.h
event_scheduler.h
fortuna.cpp fortuna: run svcs while(continue_running.load()) 2022-01-23 20:47:42 +01:00
fortuna.h fortuna: std::atomic<bool> continue_running 2022-01-23 20:39:11 +01:00
generator.cpp generator: make some internal vars const 2022-01-26 22:43:22 +01:00
generator.h generator: create permanent Serpent encryption obj 2022-01-26 22:35:45 +01:00
LICENSE
main.cpp add chance namespace; handle signals 2022-01-23 22:22:28 +01:00
Makefile
pool.cpp fix(pool): properly encode full event 2022-01-24 03:55:19 +01:00
pool.h
seed_file_management.cpp fix(sfm): use correct size in cast 2022-01-24 19:25:04 +01:00
seed_file_management.h sfm: assert checkup_interval < seed_write_interval 2022-01-23 20:27:14 +01:00
urandom_entropy_src.cpp
urandom_entropy_src.h
util.h