Commit Graph

16 Commits

Author SHA1 Message Date
d404681889
feat: "prepare to add proper entropy source" nits
All checks were successful
continuous-integration/drone/push Build is passing
general
* make greater use of "this"

Fortuna
* declare da_pools as a proper std::array of 32 Pool objects
* declare da_pools as const
* use std::shared_ptr _p_pools to access da_pools and share access to
  it
* reflect change of pools[] -> std::array in how the array elements
  are accessed, which is a) via _p_pools pointer and b) using ".at(i)"
  function
* pass _p_pools shared_ptr to Accumulator
* refactor member function names and variable names
* add member function attribute [[optimize_for_synchronized]]
* secure conversions with static_cast-s

Accumulator
* make use of _p_pools
* add _p_pools-related member functions
* add a static constexpr variable NUM_OF_POOLS

UrandomEntropySrc
* implement event adding logic using _p_pools
* make std::vector<char> non-static in urandom_entropy_src
* implement proper urandom entropy source event "sourcing" (from
  /dev/urandom), event adding, clear bytes array at the end
* properly convert using reinterpret_cast
* protect access to the main function with std::lock_guard
* receive EventAdderImpl as a ref
* use return value from "add_entropy()" member function and create
  sanity guard checking the return code "int ret"

EventAdder
* pass event (std::vector<char>) by const&

EventAdderImpl
* make use of _p_pools shared_ptr
* implement proper pool-rotating event-adding logic

Pool
* delete all copy constructors and assignment operator, the objects
  will not be copied or assigned to
* receive parameters by const& where possible/sensible
* handle concurrency:
  * declare std:string s as mutable
  * declare a rw std::mutex intended for writing and mutable
    std::recursive_mutex for read-only operations in const member
    functions
    ref: https://herbsutter.com/2013/05/24/gotw-6a-const-correctness-part-1-3/
    ref: https://arne-mertz.de/2017/10/mutable/
  * use std::lock_guard and std::unique_lock
* refactor "add_entropy()" member function
  * get rid of intermediate "event_str" and directly use the "event"
    std::vector<char> for all operations
  * add a lock guard to prevent multiple threads (should that route be
    taken) from modifying pool resources simultaneously
  * add all_ok bool for basic sanity checking
  * add print statements (at least for now)
* rename "get_s_length()" member function to "get_s_byte_count()" and
  repurpose it to return byte count of the stored entropy std::string s
2022-01-17 08:27:24 +01:00
146bf14d68
accumulator: use const& params,uint->unsigned int
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-17 04:36:15 +01:00
61dbc4b666
accumulator: fix -Wshadow, -Wconversion
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-14 07:17:59 +01:00
9f738e97ec
accumulator: actually register the pool
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-13 06:21:57 +01:00
767da88531
accumulator: check entropy sources before adding
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-11 05:38:02 +01:00
ebb1e46e1c
accumulator: move logic to source file
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-10 06:23:26 +01:00
a3009709cf
chore(accumulator): reorder includes
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-06 00:30:46 +01:00
56b1773c28
accumulator: make ctor noexcept
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-02 07:21:25 +01:00
1a325193b0
accumulator: add prototypes of service methods
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-02 07:13:12 +01:00
e5cba7e261
accumulator: add wait_for()
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-01 09:23:42 +01:00
2086861776
accumulator: implement add_source()
All checks were successful
continuous-integration/drone/push Build is passing
2021-12-29 03:49:36 +01:00
234b87ff1f
accumulator: use a Generator pointer
All checks were successful
continuous-integration/drone/push Build is passing
2021-12-29 02:56:57 +01:00
01c402300c
accumulator: add generator-interacting methods
All checks were successful
continuous-integration/drone/push Build is passing
..and a way to work with the generator
2021-12-13 13:22:50 +01:00
a6719d4947
accumulator: add add_source
All checks were successful
continuous-integration/drone/push Build is passing
2021-12-11 02:27:52 +01:00
053d2187a2
chore(accumulator): make use of init_pool_num
All checks were successful
continuous-integration/drone/push Build is passing
2021-12-09 14:11:39 +01:00
a1cbbb209e
handle PRNG state in R_state + accumulator basis
All checks were successful
continuous-integration/drone/push Build is passing
* handle the PRNG state with R_state nested class
* add a private property R holding PRNG state to Fortuna
* add R_state properties as defined in Cryptography Engineering:
  * a generator instance
  * a reseed counter
  * 32 pools that the collected entropy is to be distributed over

* add initial definition of the Pool object and its initialization

* attempt to initialize PRNG in Fortuna constructor. wrap the
  initialization call in a try-catch block like a cultured person
* erase the string used to print data from random_data() after it's been
  used
2021-12-04 00:40:39 +01:00