| 13 | namespace kernel { |
| 14 | |
| 15 | util::Result<void> SanityChecks(const Context&) |
| 16 | { |
| 17 | if (!Random_SanityCheck()) { |
| 18 | return util::Error{Untranslated("OS cryptographic RNG sanity check failure. Aborting.")}; |
| 19 | } |
| 20 | |
| 21 | return {}; |
| 22 | } |
| 23 | |
| 24 | } |
no test coverage detected