mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-17 03:24:20 +00:00
18 lines
249 B
C++
18 lines
249 B
C++
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* Zephyr CSPRNG implementation
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesh/RNG.h>
|
|
|
|
namespace mesh {
|
|
|
|
class ZephyrRNG : public RNG {
|
|
public:
|
|
void random(uint8_t *dest, size_t sz) override;
|
|
};
|
|
|
|
} /* namespace mesh */
|