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 3d125af2ed
All checks were successful
continuous-integration/drone/push Build is passing
refactor(DoTask): formatting and naming
2022-01-01 07:38:06 +01:00
lib add fmtlog library 2021-12-30 22:30:41 +01:00
.clang-format initial commit 2021-10-24 21:29:49 +02:00
.clang-tidy chore(clang-tidy): unify flags 2021-12-10 18:57:25 +01:00
.drone.starlark feat: use fmt instead of iostreams 2021-11-18 22:05:05 +01:00
.gitattributes add .gitattributes file 2021-10-24 21:34:16 +02:00
.gitignore gitignore: add .idea 2021-10-24 21:34:16 +02:00
.gitmodules feat: use fmt instead of iostreams 2021-11-18 22:05:05 +01:00
.pre-commit-config.yaml pre-commit: no need for args 2021-12-29 04:45:23 +01:00
CMakeLists.txt chore(cmake): improve legibility 2022-01-01 07:11:21 +01:00
LICENSE initial commit 2021-10-24 21:29:49 +02:00
Makefile makefile: refactor "clean" target; add "distclean" 2021-12-05 15:27:47 +01:00
accumulator.cpp accumulator: use a Generator pointer 2021-12-29 02:56:57 +01:00
accumulator.h accumulator: implement add_source() 2021-12-29 03:49:36 +01:00
do_task.cpp refactor(DoTask): formatting and naming 2022-01-01 07:38:06 +01:00
do_task.h refactor(DoTask): formatting and naming 2022-01-01 07:38:06 +01:00
entropy_src.h accumulator: add event_scheduler,entropy_src ifces 2021-12-11 02:12:49 +01:00
event_adder.h add EventAdder interface 2021-12-06 01:02:43 +01:00
event_adder_impl.h chore(event_adder_impl): pool int -> uint8_t 2021-12-11 20:16:24 +01:00
event_scheduler.h accumulator: add event_scheduler,entropy_src ifces 2021-12-11 02:12:49 +01:00
fortuna.cpp refactor: non-semantic cleanup 2021-12-29 03:55:01 +01:00
fortuna.h refactor: non-semantic cleanup 2021-12-29 03:55:01 +01:00
generator.cpp add Util class + perform general refactor 2021-12-13 05:10:07 +01:00
generator.h add Util class + perform general refactor 2021-12-13 05:10:07 +01:00
main.cpp fortuna: handle reseeds+clear pools for seed 2021-12-13 05:11:17 +01:00
pool.cpp handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
pool.h pool: set_s -> append_s as it fits better 2021-12-13 05:24:59 +01:00
seed_file_management.h refactor(SeedFileManager) 2021-12-29 04:51:40 +01:00
urandom_entropy_src.h accumulator: add urandom_entropy_src 2021-12-11 02:24:40 +01:00
util.h add Util class + perform general refactor 2021-12-13 05:10:07 +01:00