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 2d1f10cc59
All checks were successful
continuous-integration/drone/push Build is passing
meson: add warning_level,buildtype
2022-02-10 16:08:00 +01:00
lib
.clang-format
.clang-tidy
.drone.starlark
.editorconfig
.gitattributes
.gitignore
.gitmodules
.pre-commit-config.yaml
accumulator.cpp chore: print info msgs to stderr 2022-02-03 00:37:20 +01:00
accumulator.h chore: print info msgs to stderr 2022-02-03 00:37:20 +01:00
CMakeLists.txt cmake: add more diagnostic warning flags 2022-02-03 01:43:21 +01:00
do_task.cpp
do_task.h
entropy_src.h fix: -Wnon-virtual-dtor 2022-02-03 01:11:39 +01:00
event_adder_impl.h chore: print info msgs to stderr 2022-02-03 00:37:20 +01:00
event_adder.h fix: -Wnon-virtual-dtor 2022-02-03 01:11:39 +01:00
fortuna.cpp fortuna: rethrow on error in ctor 2022-02-08 00:40:11 +01:00
fortuna.h fortuna: add moar_random_data() fun 2022-02-03 02:10:06 +01:00
generator.cpp fortuna,generator({fmt}) print with colours 2022-02-03 04:52:19 +01:00
generator.h chore(generator): rm comment [skip ci] 2022-02-03 02:06:19 +01:00
LICENSE
main.cpp main: use moar_random_data() 2022-02-03 03:15:53 +01:00
Makefile
meson.build meson: add warning_level,buildtype 2022-02-10 16:08:00 +01:00
pool.cpp pool: rm event_str remnants 2022-02-07 23:44:17 +01:00
pool.h fix: -Wextra-semi 2022-02-03 00:49:40 +01:00
seed_file_management.cpp fix(SeedFileManager): 6-byte seed file issue 2022-02-07 23:00:01 +01:00
seed_file_management.h sfm: new seed_f_path "/var/tmp/.fortuna.seed" 2022-02-07 23:16:03 +01:00
urandom_entropy_src.cpp fix(-Wuseless-cast) rm a cast in UrandomEntropySrc 2022-02-03 01:26:06 +01:00
urandom_entropy_src.h fix(-Wsuggest-override): override virtual base fun 2022-02-03 01:17:47 +01:00
util.h