
算法
happygrilclh
物联网
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c 语言实现滤波器
uint32_t filter(uint32_t value_buf[Set_filter]) { uint8_t i=0,j=0; uint32_t temp =0,value=0; uint32_t sum=0; for(j=0;j<Set_filter-1;j++) { for(i=0;i<Set_filter-j;i++) { if(...原创 2020-04-28 01:25:11 · 1707 阅读 · 1 评论 -
c语言写的md5算法源码
1, MD5算法源码,输入是hex string https://github.com/pod32g/MD5 2. MD5算法源码,输入是文件 or string https://github.com/chinaran/Compute-file-or-string-md5 我都已经下载,下载地址: MD5 算法源码 c 写的-CSDN下载 https://download.csd...原创 2018-12-22 22:17:44 · 1434 阅读 · 0 评论 -
MD5 算法的原理
MD5 算法的原理: https://blog.csdn.net/u012611878/article/details/54000607转载 2019-01-02 17:50:02 · 214 阅读 · 0 评论