1 /*
2  * Copyright (c) 2024 Embeint Inc
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/random/random.h>
8 
z_impl_sys_csrand_get(void * dst,size_t outlen)9 int z_impl_sys_csrand_get(void *dst, size_t outlen)
10 {
11 	sys_rand_get(dst, outlen);
12 	return 0;
13 }
14