完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
1个回答
|
|
Random Number Generator (RNG)
The Random Number Generator (RNG) generates true non-deterministic random numbers derived from thermal noise that are suitable for cryptographic purposes. The RNG does not require a seed value. 随机数生成器(RNG)从热噪声中生成真实的非确定性随机数,适合于加密目的。 RNG不需要种子值。 /******************************************************************************** * @file bsp_rng.c * @author jianqiang.xue * @version V1.0.0 * @date 2021-07-09 * @brief 随机数生成 ********************************************************************************/ /* Includes ------------------------------------------------------------------*/ #include #include #include "RTE_Components.h" #include CMSIS_device_header #include "nrf_rng.h" #include "nrf_error.h" #include "bsp_rng.h" /* Private Function Prototypes -----------------------------------------------*/ /** * @brief 启动硬件随机数,并返回一个随机数值 * @note NULL * @retval 0-255 随机数 */ static uint8_t get_random_vector(void) { uint8_t value; NRF_RNG->CONFIG = 1; NRF_RNG->TASKS_START = 1; // 生成新的随机数并写入VALUE寄存器。 NRF_RNG->EVENTS_VALRDY = 0; while (NRF_RNG->EVENTS_VALRDY == 0) { } value = NRF_RNG->VALUE; NRF_RNG->TASKS_STOP = 1; NRF_RNG->INTENCLR = 0; NRF_RNG->CONFIG = 0; return value; } /** * @brief 得到一组随机数 * @note NULL * @param pbuff: 缓存区 * @param size: 数量 * @retval None */ void random_vector_generate(uint8_t *pbuff, uint8_t size) { uint8_t i; for (i = 0; i < size; i++) { pbuff = get_random_vector(); } } /******************************************************************************** * @file bsp_rng.h * @author jianqiang.xue * @version V1.0.0 * @date 2021-07-09 * @brief 随机数生成 ********************************************************************************/ #ifndef __BSP_RNG_H #define __BSP_RNG_H /* Includes ------------------------------------------------------------------*/ #include /* Public Function Prototypes ------------------------------------------------*/ void random_vector_generate(uint8_t * pbuff, uint8_t size); #endif |
|
|
|
只有小组成员才能发言,加入小组>>
3309 浏览 9 评论
2990 浏览 16 评论
3490 浏览 1 评论
9052 浏览 16 评论
4085 浏览 18 评论
1171浏览 3评论
602浏览 2评论
const uint16_t Tab[10]={0}; const uint16_t *p; p = Tab;//报错是怎么回事?
594浏览 2评论
用NUC131单片机UART3作为打印口,但printf没有输出东西是什么原因?
2332浏览 2评论
NUC980DK61YC启动随机性出现Err-DDR是为什么?
1894浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-21 04:06 , Processed in 1.426549 second(s), Total 79, Slave 61 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号