-
Notifications
You must be signed in to change notification settings - Fork 2
/
SM2Sign.js
64 lines (56 loc) · 1.81 KB
/
SM2Sign.js
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
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const sm3 = require('./sm_sm3');
function signRS(sm2KeyPair, msg) {
const x = sm2KeyPair.pub.getX().toString(16);
const y = sm2KeyPair.pub.getY().toString(16);
let pubKeyHex = x + y;
if (pubKeyHex.length !== 128) {
pubKeyHex = pubKeyHex.padStart(128, '0');
}
const _msg = Array.from(msg);
const signData = sm2KeyPair.sign(_msg);
let rHex = '000000000000000000000' + signData.r;
let sHex = '000000000000000000000' + signData.s;
const rHexLen = rHex.length - 64;
const sHexLen = sHex.length - 64;
rHex = rHex.substr(rHexLen, 64);
sHex = sHex.substr(sHexLen, 64);
const r = Buffer.from(rHex, 'hex');
const s = Buffer.from(sHex, 'hex');
const pub = Buffer.from(pubKeyHex, 'hex');
return {'r': r, 's': s, 'pub': pub};
}
function priToPub(sm2KeyPair) {
const x = sm2KeyPair.pub.getX().toString(16);
const y = sm2KeyPair.pub.getY().toString(16);
let pubKeyHex = x + y;
if (pubKeyHex.length !== 128) {
pubKeyHex = pubKeyHex.padStart(128, '0');
}
return Buffer.from(pubKeyHex, 'hex');
}
function sm3Digest(msg) {
const _sm3 = new sm3();
const rawData = Array.from(msg);
const digest = _sm3.sum(rawData);
return Array.from(digest, (byte) => {
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('');
}
module.exports = {
sm3Digest,
signRS,
priToPub
};