|
@@ -12,36 +12,7 @@ export const getUuid = () => {
|
|
|
s[8] = s[13] = s[18] = s[23] = "-";
|
|
|
return s.join("");
|
|
|
};
|
|
|
-// DES加密
|
|
|
-export const encryptDes = (message, key, iv) => {
|
|
|
- let keyHex = cryptoJs.enc.Utf8.parse(key);
|
|
|
- let ivHex = cryptoJs.enc.Utf8.parse(iv);
|
|
|
- let option = {
|
|
|
- iv: ivHex,
|
|
|
- mode: cryptoJs.mode.CBC,
|
|
|
- padding: cryptoJs.pad.Pkcs7
|
|
|
- };
|
|
|
- let encrypted = cryptoJs.DES.encrypt(message, keyHex, option);
|
|
|
- return encrypted.ciphertext.toString();
|
|
|
-};
|
|
|
|
|
|
-// DES解密
|
|
|
-export const decryptDes = (message, key, iv) => {
|
|
|
- let keyHex = cryptoJs.enc.Utf8.parse(key);
|
|
|
- let ivHex = cryptoJs.enc.Utf8.parse(iv);
|
|
|
- let decrypted = cryptoJs.DES.decrypt(
|
|
|
- {
|
|
|
- ciphertext: cryptoJs.enc.Hex.parse(message)
|
|
|
- },
|
|
|
- keyHex,
|
|
|
- {
|
|
|
- iv: ivHex,
|
|
|
- mode: cryptoJs.mode.CBC,
|
|
|
- padding: cryptoJs.pad.Pkcs7
|
|
|
- }
|
|
|
- );
|
|
|
- return decrypted.toString(cryptoJs.enc.Utf8);
|
|
|
-};
|
|
|
export const sha1_to_base64 = sha1 => {
|
|
|
let digits =
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|