加密算法
不会写代码的美年达
这个作者很懒,什么都没留下…
展开
-
AES加密c语言实现
#include <stdio.h>/*aes_small.c*///辅助矩阵/*s盒矩阵:The AES Substitution Table*/// 256 位的密匙256 位支持长度为32 个字符static const unsigned char sbox[256]={ //static:内部变量 const:只读,不可变常量 0x63,0x7c,0x77,0x7b...原创 2018-06-14 16:52:43 · 28427 阅读 · 11 评论 -
【转载SHA-256】
【修正BUG】SHA-256算法 C语言实现置顶2015年09月23日 11:43:24阅读数:10738SHA-256算法 C语言实现感谢 qq_20453319 提醒,现已修正BUG实现了计算字符串,文件的SHA-256值 算法来自:Federal.Information.Processing.Standards.Publication.180-2.pdf 下载文档VS2013下成功编译运行针...转载 2018-06-27 10:01:00 · 426 阅读 · 0 评论