1 /* 2 * Copyright (c) 2022 Rockchip Electronics Co. Ltd. 3 */ 4 5 #ifndef __RKCRYPTO_RANDOM_H__ 6 #define __RKCRYPTO_RANDOM_H__ 7 8 #include <stdint.h> 9 #include "rkcrypto_common.h" 10 11 RK_RES rk_get_random(uint8_t *data, uint32_t len); 12 13 #endif 14