当前位置:   article > 正文

sm3加密(32位哈希,64位十六进制数据)_sm3在线加密

sm3在线加密

https://blog.csdn.net/nicai_hualuo/article/details/121555000 中介绍了sm3的算法并给出了可用代码,我只是将其拷贝过来,测试、去掉多余的输出,并进行了简单封装,以方便项目中使用。
修正了十六进制转字符串和十进制的方法支持小写的十六进制字符串。
用法见main函数。

#include <iostream>
#include <string>
#include <cmath>
using namespace std;

namespace sm3
{
	// 二进制转换为十六进制函数实现
	string BinToHex(string str)
	{
		string hex = ""; // 用来存储最后生成的十六进制数
		int temp = 0;	 // 用来存储每次四位二进制数的十进制值
		while (str.size() % 4 != 0)
		{					 // 因为每四位二进制数就能够成为一个十六进制数,所以将二进制数长度转换为4的倍数
			str = "0" + str; // 最高位添0直到长度为4的倍数即可
		}
		for (int i = 0; i < str.size(); i += 4)
		{
			temp = (str[i] - '0') * 8 + (str[i + 1] - '0') * 4 + (str[i + 2] - '0') * 2 + (str[i + 3] - '0') * 1; // 判断出4位二进制数的十进制大小为多少
			if (temp < 10)
			{ // 当得到的值小于10时,可以直接用0-9来代替
				hex += to_string(temp);
			}
			else
			{ // 当得到的值大于10时,需要进行A-F的转换
				hex += 'A' + (temp - 10);
			}
		}
		return hex;
	}

	// 十六进制转换为二进制函数实现
	string HexToBin(string str)
	{
		string bin = "";
		string table[16] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
		for (int i = 0; i < str.size(); i++)
		{
			if (str[i] >= 'A' && str[i] <= 'F')
			{
				bin += table[str[i] - 'A' + 10];
			}
			else if (str[i] >= 'a' && str[i] <= 'f')
			{
				bin += table[str[i] - 'a' + 10];
			}
			else
			{
				bin += table[str[i] - '0'];
			}
		}
		return bin;
	}

	// 二进制转换为十进制的函数实现
	int BinToDec(string str)
	{
		int dec = 0;
		for (int i = 0; i < str.size(); i++)
		{
			dec += (str[i] - '0') * pow(2, str.size() - i - 1);
		}
		return dec;
	}

	// 十进制转换为二进制的函数实现
	string DecToBin(int str)
	{
		string bin = "";
		while (str >= 1)
		{
			bin = to_string(str % 2) + bin;
			str = str / 2;
		}
		return bin;
	}

	// 十六进制转换为十进制的函数实现
	int HexToDec(string str)
	{
		int dec = 0;
		for (int i = 0; i < str.size(); i++)
		{
			if (str[i] >= 'A' && str[i] <= 'F')
			{
				dec += (str[i] - 'A' + 10) * pow(16, str.size() - i - 1);
			}
			else if (str[i] >= 'a' && str[i] <= 'f')
			{
				dec += (str[i] - 'a' + 10) * pow(16, str.size() - i - 1);
			}
			else
			{
				dec += (str[i] - '0') * pow(16, str.size() - i - 1);
			}
		}
		return dec;
	}

	// 十进制转换为十六进制的函数实现
	string DecToHex(int str)
	{
		string hex = "";
		int temp = 0;
		while (str >= 1)
		{
			temp = str % 16;
			if (temp < 10 && temp >= 0)
			{
				hex = to_string(temp) + hex;
			}
			else
			{
				hex += ('A' + (temp - 10));
			}
			str = str / 16;
		}
		return hex;
	}

	string padding(string str)
	{ // 对数据进行填充
		string res = "";
		for (int i = 0; i < str.size(); i++)
		{ // 首先将输入值转换为16进制字符串
			res += DecToHex((int)str[i]);
		}
		// cout << "输入字符串的ASCII码表示为:" << endl;
		/*
		   for (int i = 0; i < res.size(); i++) {
		   cout << res[i];
		   if ((i + 1) % 8 == 0) {
		   cout << "  ";
		   }
		   if ((i + 1) % 64 == 0 || (i + 1) == res.size()) {
		   cout << endl;
		   }
		   }
		   cout << endl;
		   */
		int res_length = res.size() * 4; // 记录的长度为2进制下的长度
		res += "8";						 // 在获得的数据后面添1,在16进制下相当于是添加8
		while (res.size() % 128 != 112)
		{
			res += "0"; // “0”数据填充
		}
		string res_len = DecToHex(res_length); // 用于记录数据长度的字符串
		while (res_len.size() != 16)
		{
			res_len = "0" + res_len;
		}
		res += res_len;
		return res;
	}

	string LeftShift(string str, int len)
	{ // 实现循环左移len位功能
		string res = HexToBin(str);
		res = res.substr(len) + res.substr(0, len);
		return BinToHex(res);
	}

	string XOR(string str1, string str2)
	{ // 实现异或操作
		string res1 = HexToBin(str1);
		string res2 = HexToBin(str2);
		string res = "";
		for (int i = 0; i < res1.size(); i++)
		{
			if (res1[i] == res2[i])
			{
				res += "0";
			}
			else
			{
				res += "1";
			}
		}
		return BinToHex(res);
	}

	string AND(string str1, string str2)
	{ // 实现与操作
		string res1 = HexToBin(str1);
		string res2 = HexToBin(str2);
		string res = "";
		for (int i = 0; i < res1.size(); i++)
		{
			if (res1[i] == '1' && res2[i] == '1')
			{
				res += "1";
			}
			else
			{
				res += "0";
			}
		}
		return BinToHex(res);
	}

	string OR(string str1, string str2)
	{ // 实现或操作
		string res1 = HexToBin(str1);
		string res2 = HexToBin(str2);
		string res = "";
		for (int i = 0; i < res1.size(); i++)
		{
			if (res1[i] == '0' && res2[i] == '0')
			{
				res += "0";
			}
			else
			{
				res += "1";
			}
		}
		return BinToHex(res);
	}

	string NOT(string str)
	{ // 实现非操作
		string res1 = HexToBin(str);
		string res = "";
		for (int i = 0; i < res1.size(); i++)
		{
			if (res1[i] == '0')
			{
				res += "1";
			}
			else
			{
				res += "0";
			}
		}
		return BinToHex(res);
	}

	char binXor(char str1, char str2)
	{ // 实现单比特的异或操作
		return str1 == str2 ? '0' : '1';
	}

	char binAnd(char str1, char str2)
	{ // 实现单比特的与操作
		return (str1 == '1' && str2 == '1') ? '1' : '0';
	}

	string ModAdd(string str1, string str2)
	{ // mod 2^32运算的函数实现
		string res1 = HexToBin(str1);
		string res2 = HexToBin(str2);
		char temp = '0';
		string res = "";
		for (int i = res1.size() - 1; i >= 0; i--)
		{
			res = binXor(binXor(res1[i], res2[i]), temp) + res;
			if (binAnd(res1[i], res2[i]) == '1')
			{
				temp = '1';
			}
			else
			{
				if (binXor(res1[i], res2[i]) == '1')
				{
					temp = binAnd('1', temp);
				}
				else
				{
					temp = '0';
				}
			}
		}
		return BinToHex(res);
	}

	string P1(string str)
	{ // 实现置换功能P1(X)
		return XOR(XOR(str, LeftShift(str, 15)), LeftShift(str, 23));
	}

	string P0(string str)
	{ // 实现置换功能P0(X)
		return XOR(XOR(str, LeftShift(str, 9)), LeftShift(str, 17));
	}

	string T(int j)
	{ // 返回Tj常量值的函数实现
		if (0 <= j && j <= 15)
		{
			return "79CC4519";
		}
		else
		{
			return "7A879D8A";
		}
	}

	string FF(string str1, string str2, string str3, int j)
	{ // 实现布尔函数FF功能
		if (0 <= j && j <= 15)
		{
			return XOR(XOR(str1, str2), str3);
		}
		else
		{
			return OR(OR(AND(str1, str2), AND(str1, str3)), AND(str2, str3));
		}
	}

	string GG(string str1, string str2, string str3, int j)
	{ // 实现布尔函数GG功能
		if (0 <= j && j <= 15)
		{
			return XOR(XOR(str1, str2), str3);
		}
		else
		{
			return OR(AND(str1, str2), AND(NOT(str1), str3));
		}
	}
	string extension(string str)
	{					  // 消息扩展函数
		string res = str; // 字符串类型存储前68位存储扩展字W值
		for (int i = 16; i < 68; i++)
		{ // 根据公式生成第17位到第68位的W值
			res += XOR(XOR(P1(XOR(XOR(res.substr((i - 16) * 8, 8), res.substr((i - 9) * 8, 8)), LeftShift(res.substr((i - 3) * 8, 8), 15))), LeftShift(res.substr((i - 13) * 8, 8), 7)), res.substr((i - 6) * 8, 8));
		}
		// cout << "扩展后的消息:" << endl;
		// cout << "W0,W1,……,W67的消息:" << endl;
		/*
		   for (int i = 0; i < 8; i++) {
		   for (int j = 0; j < 8; j++) {
		   cout << res.substr(i * 64 + j * 8, 8) << "  ";
		   }
		   cout << endl;
		   }
		   cout << res.substr(512, 8) << "  " << res.substr(520, 8) << "  " << res.substr(528, 8) << "  " << res.substr(536, 8) << endl;
		   cout << endl;
		   */
		for (int i = 0; i < 64; i++)
		{ // 根据公式生成64位W'值
			res += XOR(res.substr(i * 8, 8), res.substr((i + 4) * 8, 8));
		}
		/*
		   cout << "W0',W1',……,W63'的消息:" << endl;
		   for (int i = 0; i < 8; i++) {
		   for (int j = 0; j < 8; j++) {
		   cout << res.substr(544+i * 64 + j * 8, 8) << "  ";
		   }
		   cout << endl;
		   }
		   cout << endl;
		   */
		return res;
	}

	string compress(string str1, string str2)
	{ // 消息压缩函数
		string IV = str2;
		string A = IV.substr(0, 8), B = IV.substr(8, 8), C = IV.substr(16, 8), D = IV.substr(24, 8), E = IV.substr(32, 8), F = IV.substr(40, 8), G = IV.substr(48, 8), H = IV.substr(56, 8);
		string SS1 = "", SS2 = "", TT1 = "", TT2 = "";
		/*
		   cout << "迭代压缩中间值: " << endl;
		   cout << "    A         B         C         D         E         F        G         H " << endl;
		   cout << A << "  " << B << "  " << C << "  " << D << "  " << E << "  " << F << "  " << G << "  " << H << endl;
		   */
		for (int j = 0; j < 64; j++)
		{
			SS1 = LeftShift(ModAdd(ModAdd(LeftShift(A, 12), E), LeftShift(T(j), (j % 32))), 7);
			SS2 = XOR(SS1, LeftShift(A, 12));
			TT1 = ModAdd(ModAdd(ModAdd(FF(A, B, C, j), D), SS2), str1.substr((j + 68) * 8, 8));
			TT2 = ModAdd(ModAdd(ModAdd(GG(E, F, G, j), H), SS1), str1.substr(j * 8, 8));
			D = C;
			C = LeftShift(B, 9);
			B = A;
			A = TT1;
			H = G;
			G = LeftShift(F, 19);
			F = E;
			E = P0(TT2);
			// cout << A << "  " << B << "  " << C << "  " << D << "  " << E << "  " << F << "  " << G << "  " << H << endl;
		}
		string res = (A + B + C + D + E + F + G + H);
		// cout << endl;
		return res;
	}

	string iteration(string str)
	{ // 迭代压缩函数实现
		int num = str.size() / 128;
		// cout << "消息经过填充之后共有 " + to_string(num) + " 个消息分组。" << endl;
		// cout << endl;
		string V = "7380166F4914B2B9172442D7DA8A0600A96F30BC163138AAE38DEE4DB0FB0E4E";
		string B = "", extensionB = "", compressB = "";
		for (int i = 0; i < num; i++)
		{
			// cout << "第 " << to_string(i+1) << " 个消息分组:" << endl;
			// cout << endl;
			B = str.substr(i * 128, 128);
			extensionB = extension(B);
			compressB = compress(extensionB, V);
			V = XOR(V, compressB);
		}
		return V;
	}

	string sm3(const string str)
	{
		string paddingValue = padding(str);
		return iteration(paddingValue);
	}
}

string sm3::sm3(const string str);

int main()
{ // 主函数
	string str = "abc";
	cout << "str:" << str << " sm3: " << sm3::sm3(str) << endl;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/544348
推荐阅读
相关标签
  

闽ICP备14008679号