资源简介
从GMSSL整理出来的SM3哈希算法,文件只有sm3.c test.c两个,其它文件需要自行安装openssl,内有makefile,可直接编译,修改CROSS_COMPIER_PREFIX的值即可编译成不同的平台使用。

代码片段和文件信息
/* ====================================================================
* Copyright (c) 2014 - 2017 The GmSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms with or without
* modification are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* “This product includes software developed by the GmSSL Project.
* (http://gmssl.org/)“
*
* 4. The name “GmSSL Project“ must not be used to endorse or promote
* products derived from this software without prior written
* permission. For written permission please contact
* guanzhi1980@gmail.com.
*
* 5. Products derived from this software may not be called “GmSSL“
* nor may “GmSSL“ appear in their names without prior written
* permission of the GmSSL Project.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* “This product includes software developed by the GmSSL Project
* (http://gmssl.org/)“
*
* THIS SOFTWARE IS PROVIDED BY THE GmSSL PROJECT ‘‘AS IS‘‘ AND ANY
* EXPRESSED OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GmSSL PROJECT OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL
* SPECIAL EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT
* NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE DATA OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY WHETHER IN CONTRACT
* STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*/
#include
#include
#include “internal/byteorder.h“
void sm3_init(sm3_ctx_t *ctx)
{
ctx->digest[0] = 0x7380166F;
ctx->digest[1] = 0x4914B2B9;
ctx->digest[2] = 0x172442D7;
ctx->digest[3] = 0xDA8A0600;
ctx->digest[4] = 0xA96F30BC;
ctx->digest[5] = 0x163138AA;
ctx->digest[6] = 0xE38DEE4D;
ctx->digest[7] = 0xB0FB0E4E;
ctx->nblocks = 0;
ctx->num = 0;
}
void sm3_update(sm3_ctx_t *ctx const unsigned char* data size_t data_len)
{
if (ctx->num) {
unsigned int left = SM3_BLOCK_SIZE - ctx->num;
if (data_len < left) {
memcpy(ctx->block + ctx->num data data_len);
ctx->num += data_len;
return;
} else {
mem
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1039 2018-12-12 17:54 SM3-me\sm3test.c
文件 1000 2018-12-11 17:54 SM3-me\Makefile
文件 6204 2018-12-12 13:35 SM3-me\sm3.c
目录 0 2018-12-12 17:55 SM3-me
----------- --------- ---------- ----- ----
8243 4
相关资源
- Hash1.04(md5校验工具) 绿色免费版
- ILASM32位 + 64位
- 慧荣SM32X_K0530量产工具
- 慧荣Test_SM32x_H0229汉化版
- 国密SM3算法Delphi实现
- Delphi 版 SM3 SM4加解密
- 新能源电动车快充2015年国标充电完整
- 中文文本相似度匹配算法
- 中国信息安全国标全汇总 信息安全
- 中国信息安全国标全汇总 信息安全
- 国标密码算法
- SM2_SM3_SM4计算常用工具
- pbfunc外部函数扩展 2015-05-03
- JT883国标-fcw、ldw
- 基于SM32F103C8T6的环境传感器
- 商密SM4-SM3-SM2FPGA实现源码.rar
- 国密SM2 / SM3 / SM4 / SM9 / ZUC算法的官方
- Radasm中文版安装包
- 国密算法SM2 SM3 SM4相关算法及推荐参数
- SVAC国家标准介绍
- Hash Crack_ Password Cracking Manual v2.0
- LSM303DLH 中文pdf (磁力计+ 线性加速
- iOS国密demoSM2 SM3 SM4 ZUC EEA3 EIA3
- GBT16260-2006国标.rar
- 《GB/T 32960.1-2016 电动汽车远程服务与
- 国密算法SM3验证与SM4文件加密工具C
- QR code 国标.pdf
- RS-232中国标准文档
- 毫米波雷达FCW国标
- 利用TomLibCrypt库实现hash算法
评论
共有 条评论