登录
首页 » c++ » 密码算法md5 c源码

密码算法md5 c源码

于 2022-07-19 发布 文件大小:2.35 kB
0 84
下载积分: 2 下载次数: 1

代码说明:

1. 对信息进行填充,使其字节长度与448模512同余 2. 设置好4个链接变量,进入算法的4轮循环运算 3. 每轮一个非线性函数 F(x, y, z)  (((x) & (y)) | ((~x) & (z)))   G(x, y, z)  (((x) & (z)) | ((y) & (~z))) H(x, y, z)  ((x) ^ (y) ^ (z)) I(x, y, z)  ((y) ^ ((x) | (~z))) MD5轮主要操作: FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + ac; (a) = ROTATE_LEFT ((a), (s)); (a) += (b); } GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + ac; (a) = ROTATE_LEFT ((a), (s)); (a) += (b); } HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + ac; (a) = ROTATE_LEFT ((a), (s)); (a) += (b); } II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + ac; (a) = ROTATE_LEFT ((a), (s)); (a) += (b); }

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • beediff
    使用QT编写的一个文件对比工具,使用QT编写的一个文件对比工具,使用QT编写的一个文件对比工具(Use a file comparison tool written in QT)
    2021-01-25 15:28:37下载
    积分:1
  • IPTC样本(图像EXIF,IPTC)从文件中读取信息
    IPTC sample (image EXIF, IPTC) information read from file
    2022-07-08 13:00:39下载
    积分:1
  • stdio_example
    matlab中用C语言编写sfunction, 实现读取文件中的数据,应用库"stdio.h"(matlab using C language sfunction, realize the data read from the file, the application library stdio.h)
    2007-10-15 17:23:56下载
    积分:1
  • 3D-Construction
    说明:  利用散斑图计算获取深度图,散斑投影结合红外相机(Depth map was obtained by speckle pattern calculation, speckle projection combined with infrared camera)
    2021-04-22 21:18:48下载
    积分:1
  • 多项式
    用链表实现多项式的加减乘除以及多项式的打印显示(Addition, subtraction, multiplication, division and display of polynomials by linked list)
    2019-05-19 08:17:30下载
    积分:1
  • 此程序模拟操作系统死锁,用户可在程序运行时选择死锁或不死锁比较不同的运行情况。...
    此程序模拟操作系统死锁,用户可在程序运行时选择死锁或不死锁比较不同的运行情况。-Deadlock operating system, users can choose to run or not Deadlock Deadlock compare different operating conditions.
    2022-06-30 23:44:52下载
    积分:1
  • CAD统计多线段长度总和插件
    autocad 计算多条多段线长度,命令ap加载插件,命令lenof然后选择多段线进行计算总长度(AutoCAD calculates the length of multi-segment lines, commands AP to load plug-ins, commands lenof, and then chooses multi-segment lines to calculate the total length.)
    2020-06-21 18:00:02下载
    积分:1
  • C# 进程间通信(IPC, Inter-Process Communication) 实例源码
    实现了 不同winform窗体之间 发送消息,即:不同的exe应用程序之间的通信
    2019-07-10下载
    积分:1
  • MedianFilter_GPU
    该VC++程序是基于CUDA架构的中值滤波程序,GPU加速,并且使用了opencv函数库(The VC++ program is based on the CUDA architecture median filtering program, GPU acceleration, and use the opencv library)
    2014-10-27 18:29:32下载
    积分:1
  • doxygen_manual-1.4.3
    doxygen是一个代码文档化工具。通过他可以自动的生成注释和文档。很方便(doxygen is a code documentation tool. Can be automatically generated through his notes and documents. Easily)
    2010-01-14 15:13:26下载
    积分:1
  • 696518资源总数
  • 105563会员总数
  • 11今日下载