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 53645ea160
All checks were successful
continuous-integration/drone/push Build is passing
generator: add more try-catch blocks internally
one around initialization and another when calling reseed()
2021-12-05 03:13:47 +01:00
lib feat: use fmt instead of iostreams 2021-11-18 22:05:05 +01:00
.clang-format initial commit 2021-10-24 21:29:49 +02:00
.clang-tidy makefile,pre-commit: add clang-tidy 2021-10-30 20:39:23 +02: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: exclude the lib folder 2021-12-05 03:10:50 +01:00
CMakeLists.txt handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
LICENSE initial commit 2021-10-24 21:29:49 +02:00
Makefile cmake,makefile: sanitize! 2021-12-02 18:34:07 +01:00
accumulator.cpp handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
accumulator.h handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
fortuna.cpp handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
fortuna.h handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
generator.cpp generator: add more try-catch blocks internally 2021-12-05 03:13:47 +01:00
generator.h finalise generator 2021-11-30 14:09:39 +01:00
main.cpp finalise generator 2021-11-30 14:09:39 +01:00
pool.cpp handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00
pool.h handle PRNG state in R_state + accumulator basis 2021-12-04 00:40:39 +01:00