Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
84434ba006dacd748fdab9a17a9821763fea1086
/
.
/
subsys
/
random
/
random_test_csprng.c
blob: f754e6cff4229c5d01d83ca2ea592c648e439a57 [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2024 Embeint Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<zephyr/random/random.h>
int
z_impl_sys_csrand_get
(
void
*
dst
,
size_t
outlen
)
{
sys_rand_get
(
dst
,
outlen
);
return
0
;
}