| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- import CryptoJS from 'crypto-js';
- import { isEncrypted } from '../../services/utils';
- /** AES密钥 */
- const aeskey: CryptoJS.lib.WordArray = CryptoJS.enc.Utf8.parse('F7A72DE7D6264530F01BA49BC73EB873');
- /** MAC检验码左8字节 */
- const macKeyLeft: CryptoJS.lib.WordArray = CryptoJS.enc.Hex.parse('B0FB83E39A5EBFAA'); // 这里要用CryptoJS.enc.Hex.parse,CryptoJS.enc.Utf8.parse返回是16位的
- /** MAC检验码右8字节 */
- const macKeyRight: CryptoJS.lib.WordArray = CryptoJS.enc.Hex.parse('BE471362A58393FF');
- /** MAC检验向量 */
- const iv = new Uint8Array([0xd9, 0x51, 0xdb, 0xe0, 0x37, 0xc8, 0x23, 0x25]);
- /** Phone AES密钥 */
- const phoneaeskey = '0d299ce2d4105282f7471074cb0f9f9d';
- const aesOption = {
- mode: CryptoJS.mode.ECB,
- padding: CryptoJS.pad.Pkcs7,
- };
- const desOption = {
- mode: CryptoJS.mode.ECB,
- padding: CryptoJS.pad.NoPadding,
- };
- /**
- * 将Uint8Array数据转化为WordArray数据的方法
- * @param arr Uint8Array数据
- */
- export function uint8ArrayToWordArray(arr: Uint8Array): CryptoJS.lib.WordArray {
- const word = [];
- for (let i = 0; i < arr.length; i += 4) {
- word.push((arr[i] << 24) | (arr[i + 1] << 16) | (arr[i + 2] << 8) | (arr[i + 3] << 0));
- }
- macKeyLeft;
- return CryptoJS.lib.WordArray.create(word, arr.length);
- }
- /**
- * 将WordArray数据转化为Uint8Array数据的方法
- * @param wordArray WordArray数据
- */
- export function wordArrayToUint8Array(wordArray: CryptoJS.lib.WordArray): Uint8Array {
- const words = wordArray.words;
- const byteArray = [];
- for (let i = 0; i < words.length; ++i) {
- const word = words[i];
- for (let j = 3; j >= 0; --j) {
- byteArray.push((word >> (8 * j)) & 0xff);
- }
- }
- return new Uint8Array(byteArray);
- }
- /**
- * MAC校检码生成子方法
- * @param plainText 目标数据
- * @param key DES密钥
- */
- function dataMacAnsiX99(plainText: Uint8Array, key: CryptoJS.lib.WordArray): Uint8Array | null {
- if (plainText.length % 8 !== 0) {
- return null;
- }
- const macData = new Uint8Array(8);
- macData.set(iv, 0);
- const xorData = new Uint8Array(8);
- for (let i = 0; i < plainText.length; i += 8) {
- for (let j = 0; j < 8; j++) {
- xorData[j] = macData[j] ^ plainText[i + j];
- }
- const desData = CryptoJS.DES.encrypt(uint8ArrayToWordArray(xorData), key, desOption);
- const desBase64 = CryptoJS.enc.Base64.parse(desData.toString());
- const desArray = wordArrayToUint8Array(desBase64);
- for (let k = 0; k < desArray.length; k++) {
- macData[k] = desArray[k];
- }
- }
- return macData;
- }
- /**
- * MAC校检码生成方法
- * @param plainText 目标数据
- */
- function dataMacAnsiX919(plainText: Uint8Array): Uint8Array | null {
- const data1 = dataMacAnsiX99(plainText, macKeyLeft);
- if (data1 === null) {
- return null;
- }
- const cipherParams = CryptoJS.lib.CipherParams.create({
- ciphertext: uint8ArrayToWordArray(data1),
- });
- const data2 = CryptoJS.DES.decrypt(cipherParams, macKeyRight, desOption);
- const retData = CryptoJS.DES.encrypt(data2, macKeyLeft, desOption);
- const retBase64 = CryptoJS.enc.Base64.parse(retData.toString());
- return wordArrayToUint8Array(retBase64);
- }
- /**
- * 5.0报文数据加密方法
- * @param plainText 明文
- */
- export const encrypt50 = (plainText: Uint8Array): Uint8Array | null => {
- if (plainText === null) {
- return null;
- }
- const a = CryptoJS.AES.encrypt(uint8ArrayToWordArray(plainText), aeskey, aesOption);
- const a1 = CryptoJS.enc.Base64.parse(a.toString());
- const a2 = wordArrayToUint8Array(a1);
- const data1 = new Uint8Array(4 + a2.length + 8);
- const dataView = new DataView(new ArrayBuffer(4));
- dataView.setUint32(0, plainText.length, true);
- const lengthArray = new Uint8Array(dataView.buffer);
- data1.set(lengthArray);
- data1.set(a2, 4);
- const mDataTemp = new Uint8Array(8);
- mDataTemp.set(lengthArray);
- mDataTemp.set(new Uint8Array(4), 4);
- const macData = dataMacAnsiX919(mDataTemp);
- if (macData === null) {
- return null;
- }
- data1.set(macData, 4 + a2.length);
- return data1;
- };
- /**
- * 5.0报文数据解密方法
- * @param encryptData 密文
- * @param size 明文长度
- */
- export const decrypt50 = (encryptData: Uint8Array, size: number): Uint8Array | null => {
- const cipherParams = CryptoJS.lib.CipherParams.create({
- ciphertext: uint8ArrayToWordArray(encryptData),
- });
- const decrytped = CryptoJS.AES.decrypt(cipherParams, aeskey, aesOption);
- const a = wordArrayToUint8Array(decrytped);
- if (a.length < size) {
- return null;
- }
- return a.subarray(0, size);
- };
- /**
- * 十六进制字符串转Uint8Array
- * @param hex
- * @returns
- */
- export function hexStringToUint8Array(hex: string) {
- const buffer = hex.match(/.{1,2}/g)?.map((byte) => parseInt(byte, 16));
- return new Uint8Array(buffer ?? []);
- }
- export function toUint8Array(str: string) {
- const buffer = [];
- for (let i of str) {
- const _code = i.charCodeAt(0);
- if (_code < 0x80) {
- buffer.push(_code);
- } else if (_code < 0x800) {
- buffer.push(0xc0 + (_code >> 6));
- buffer.push(0x80 + (_code & 0x3f));
- } else if (_code < 0x10000) {
- buffer.push(0xe0 + (_code >> 12));
- buffer.push(0x80 + (_code >> 6 & 0x3f));
- buffer.push(0x80 + (_code & 0x3f));
- }
- }
- return Uint8Array.from(buffer);
- }
- export function Uint8ArrayToString(fileData: Uint8Array){
- var dataString = "";
- for (var i = 0; i < fileData.length; i++) {
- dataString += String.fromCharCode(fileData[i]);
- }
- return dataString
- }
- /// body加密
- export const encryptBody = (json: string, ec: boolean=isEncrypted()) => {
- const data = toUint8Array(json)
- const encrypt = encrypt50(data)
- /// 如果为空
- if (encrypt) {
- const base = CryptoJS.enc.Base64.stringify(uint8ArrayToWordArray(encrypt))
- return ec ? base : json
- }
- return json
- }
- /**
- * AES数据解密方法
- * @param encryptData 密文
- * @param size 明文长度
- */
- export const decryptAES = (value: string): string | undefined => {
- const ciphertext = hexStringToUint8Array(value);
- const key = hexStringToUint8Array(phoneaeskey);
- const cipherParams = CryptoJS.lib.CipherParams.create({
- ciphertext: uint8ArrayToWordArray(ciphertext),
- });
- const decrytped = CryptoJS.AES.decrypt(cipherParams, uint8ArrayToWordArray(key), aesOption);
- const h = wordArrayToUint8Array(decrytped).subarray(0, decrytped.sigBytes);
- const result = new TextDecoder().decode(h);
- return result;
- }
|