You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
982 B
38 lines
982 B
import CryptoJS from 'crypto-js';
|
|
import { sm4 } from 'sm-crypto';
|
|
|
|
import { BaseSymmetricEncryption } from '../base';
|
|
|
|
/**
|
|
* SM4 实现
|
|
*/
|
|
export class Sm4Encryption extends BaseSymmetricEncryption {
|
|
override decrypt(data: string, key: string): string {
|
|
this.checkKey(key);
|
|
const keyHex = CryptoJS.enc.Hex.stringify(CryptoJS.enc.Utf8.parse(key));
|
|
return sm4.decrypt(data, keyHex);
|
|
}
|
|
|
|
override encrypt(data: string, key: string): string {
|
|
this.checkKey(key);
|
|
/**
|
|
* 转hex字符串
|
|
* encrypt方法的key需要为`16进制字符串`而非`原始字符串`
|
|
* 比如字符串ab a为0x61 b为0x62 转字符串为 6162
|
|
*/
|
|
const keyHex = CryptoJS.enc.Hex.stringify(CryptoJS.enc.Utf8.parse(key));
|
|
|
|
return sm4.encrypt(data, keyHex);
|
|
}
|
|
|
|
/**
|
|
* key长度只能为16位字符串
|
|
* @param key key
|
|
*/
|
|
private checkKey(key: string) {
|
|
if (key.length !== 16) {
|
|
throw new Error('SM4 key must be 16 bytes');
|
|
}
|
|
}
|
|
}
|