Browse Source

Merge pull request #1269 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '966d59c4084ae0aae772c116a105f31d19684345':
  无JIRA任务 包装一下通用解密方法
es6
windy 5 years ago
parent
commit
07925a5aba
  1. 15
      src/core/base.js

15
src/core/base.js

@ -924,6 +924,21 @@ if (!_global.BI) {
}
},
/**
* 通用解密方法
* @param type 解密方式
* @param text 文本
* @param key 种子
* @return {*}
*/
decrypt: function (type, text, key) {
switch (type) {
case BI.CRYPT_TYPE.AES:
default:
return BI.aesDecrypt(text, key);
}
},
/**
* 对字符串中的'\做编码处理
* @static

Loading…
Cancel
Save