I hereby claim:
- I am spencerwooo on github.
- I am spencerwoo (https://keybase.io/spencerwoo) on keybase.
- I have a public key ASCtXMcCY0UpKPF6NpoLlwJT3xXsD5nzunxF2ei4gBRBkgo
To claim this, I am signing this object:
| name: ACL4SSR_Online_Full_WithIcon | |
| desc: ACL4SSR 全部覆写规则(带图标) | |
| proxy-groups: #!replace | |
| - name: 节点选择 | |
| icon: https://testingcf.jsdelivr.net/gh/Koolson/Qure@master/IconSet/Color/Proxy.png | |
| type: select | |
| proxies: | |
| - 自动选择 | |
| - 香港节点 |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-brown; icon-glyph: magic; | |
| const config = new Array() | |
| // ========= ↓将生成的配置粘贴这以下↓========= | |
| config[0] = "" // uid | |
| config[1] = "cn_gf01" // cn_gf01 天空岛 or cn_qd01 世界树 | |
| config[2] = "" // cookie | |
| // ========= ↑将生成的配置粘贴这以上↑ ======== |
I hereby claim:
To claim this, I am signing this object:
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: orange; icon-glyph: quote-right; | |
| // Change these to your usernames! | |
| const user = "spencer" | |
| const jike = "4DDA0425-FB41-4188-89E4-952CA15E3C5E" | |
| const telegram = "realSpencerWoo" | |
| const github = "spencerwooo" |
| @import url("https://fonts.googleapis.com/css?family=Miriam+Libre:400,700|Rubik:400&display=swap"); | |
| a.title { | |
| font-family: "Miriam Libre", Noto Sans CJK SC, Sarasa Gothic SC, | |
| Microsoft YaHei, sans-serif, Apple Color Emoji, Segoe UI Emoji !important; | |
| } | |
| #content-wrap#content-wrap .content, | |
| #content-wrap#content-wrap .content-inner, | |
| #feedTree, | |
| body { | |
| font-family: rubik, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, |
| @import url(https://fonts.googleapis.com/css?family=Miriam+Libre:400,700&display=swap); | |
| a.title { | |
| font-family: 'Miriam Libre', Noto Sans CJK SC, Microsoft YaHei, sans-serif, Apple Color Emoji, Segoe UI Emoji!important | |
| } | |
| #content-wrap#content-wrap .content, | |
| #content-wrap#content-wrap .content-inner, | |
| #feedTree, | |
| body { | |
| font-family: Avenir Next, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, PingFang SC, Noto Sans CJK SC, Microsoft YaHei, sans-serif, Apple Color Emoji, Segoe UI Emoji!important |
| let credentialWorker = worker() | |
| credentialWorker.generate(seed, currentCourseId, rynmParams) | |
| .then(credentials => { | |
| ... // Do what ever you want with `credentials` | |
| }) |
| const SHA256 = require('crypto-js/sha256') // 在哈希算法里面用到了 SHA256 | |
| const BigInteger = require('jsbn').BigInteger // 整个认证算法都需要大整数的支持 | |
| export function generate(seed, currentCourseId, rynmParams) { | |
| let credentials = {} | |
| ... // Complicated algorithm | |
| return credentials | |
| } |