MCPcopy Create free account
hub / github.com/smallfawn/QLScriptPublic / KO

Function KO

gqftbz.js:726–730  ·  view source on GitHub ↗

* 16位随机数 * @returns

()

Source from the content-addressed store, hash-verified

724 * @returns
725 */
726function KO() {
727 let e = Math.random().toString(36).substr(2);
728 for (; e.length < 16;) e += Math.random().toString(36).substr(2);
729 return (e = e.substr(0, 16)), e;
730}
731function AES_CBC_Encrypt(data, key, iv) {
732 key = CryptoJS.enc.Utf8.parse(key);
733 iv = CryptoJS.enc.Utf8.parse(iv);

Callers 5

task_signinMethod · 0.85
task_readMethod · 0.85
task_likeMethod · 0.85
task_shareMethod · 0.85
refresh_tokenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected