上传者: 41532733
|
上传时间: 2021-12-06 19:12:36
|
文件大小: 3KB
|
文件类型: -
无需将消息一次读入内存,通过循环调用sha256_update1即可计算摘要值,摘要值最后存储在hash[32]中;可以利用SHA256在线工具验证;
sha256_init(&ctx;);
sha256_update1(&ctx;, message1, 64);
sha256_update1(&ctx;, message2, 63);
sha256_final(&ctx;, hash);
附在线工具:http://tool.oschina.net/encrypt?type=2