├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── Icon.ai ├── LICENSE ├── README.md ├── app.icns ├── app.ico ├── background.png ├── html ├── lib │ ├── abstract.js │ ├── asymmetric.js │ ├── keypair.js │ ├── read.js │ └── symmetric.js ├── locals │ ├── abstract.html │ ├── asymmetric.html │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── element.js │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── hash.html │ ├── home.html │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── index.html │ ├── lang │ │ ├── en.js │ │ ├── ja.js │ │ └── zh-CN.js │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ ├── layui.js │ ├── other.html │ ├── radix.html │ ├── settings │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── index.html │ │ └── settings.js │ ├── symmetric.html │ └── tool │ │ ├── checker.html │ │ ├── convert.html │ │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── ecdh.html │ │ ├── element.js │ │ ├── encoding.html │ │ ├── encoding.js │ │ ├── extraction.html │ │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ │ ├── generate.html │ │ ├── index.html │ │ ├── parser.html │ │ ├── passphrase.html │ │ ├── sign.html │ │ └── x509.html └── padding.js ├── main.js ├── package.json ├── screenshot ├── asymmetric.png ├── encoding.png ├── hash.png ├── keypair.png ├── message.png ├── other.png ├── radix.png ├── started.png └── symmetric.png ├── test └── mocha.js ├── tray.png └── yarn.lock /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | repo_token: 51XvxQi96kSdizyHij9G9kAb2yBurpiqW -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/.travis.yml -------------------------------------------------------------------------------- /Icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/Icon.ai -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/README.md -------------------------------------------------------------------------------- /app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/app.icns -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/app.ico -------------------------------------------------------------------------------- /background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/background.png -------------------------------------------------------------------------------- /html/lib/abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/lib/abstract.js -------------------------------------------------------------------------------- /html/lib/asymmetric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/lib/asymmetric.js -------------------------------------------------------------------------------- /html/lib/keypair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/lib/keypair.js -------------------------------------------------------------------------------- /html/lib/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/lib/read.js -------------------------------------------------------------------------------- /html/lib/symmetric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/lib/symmetric.js -------------------------------------------------------------------------------- /html/locals/abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/abstract.html -------------------------------------------------------------------------------- /html/locals/asymmetric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/asymmetric.html -------------------------------------------------------------------------------- /html/locals/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/layui.css -------------------------------------------------------------------------------- /html/locals/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/layui.mobile.css -------------------------------------------------------------------------------- /html/locals/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/code.css -------------------------------------------------------------------------------- /html/locals/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /html/locals/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /html/locals/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/element.js -------------------------------------------------------------------------------- /html/locals/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/font/iconfont.eot -------------------------------------------------------------------------------- /html/locals/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/font/iconfont.svg -------------------------------------------------------------------------------- /html/locals/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/font/iconfont.ttf -------------------------------------------------------------------------------- /html/locals/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/font/iconfont.woff -------------------------------------------------------------------------------- /html/locals/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/font/iconfont.woff2 -------------------------------------------------------------------------------- /html/locals/hash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/hash.html -------------------------------------------------------------------------------- /html/locals/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/home.html -------------------------------------------------------------------------------- /html/locals/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/0.gif -------------------------------------------------------------------------------- /html/locals/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/1.gif -------------------------------------------------------------------------------- /html/locals/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/10.gif -------------------------------------------------------------------------------- /html/locals/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/11.gif -------------------------------------------------------------------------------- /html/locals/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/12.gif -------------------------------------------------------------------------------- /html/locals/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/13.gif -------------------------------------------------------------------------------- /html/locals/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/14.gif -------------------------------------------------------------------------------- /html/locals/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/15.gif -------------------------------------------------------------------------------- /html/locals/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/16.gif -------------------------------------------------------------------------------- /html/locals/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/17.gif -------------------------------------------------------------------------------- /html/locals/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/18.gif -------------------------------------------------------------------------------- /html/locals/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/19.gif -------------------------------------------------------------------------------- /html/locals/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/2.gif -------------------------------------------------------------------------------- /html/locals/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/20.gif -------------------------------------------------------------------------------- /html/locals/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/21.gif -------------------------------------------------------------------------------- /html/locals/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/22.gif -------------------------------------------------------------------------------- /html/locals/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/23.gif -------------------------------------------------------------------------------- /html/locals/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/24.gif -------------------------------------------------------------------------------- /html/locals/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/25.gif -------------------------------------------------------------------------------- /html/locals/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/26.gif -------------------------------------------------------------------------------- /html/locals/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/27.gif -------------------------------------------------------------------------------- /html/locals/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/28.gif -------------------------------------------------------------------------------- /html/locals/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/29.gif -------------------------------------------------------------------------------- /html/locals/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/3.gif -------------------------------------------------------------------------------- /html/locals/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/30.gif -------------------------------------------------------------------------------- /html/locals/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/31.gif -------------------------------------------------------------------------------- /html/locals/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/32.gif -------------------------------------------------------------------------------- /html/locals/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/33.gif -------------------------------------------------------------------------------- /html/locals/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/34.gif -------------------------------------------------------------------------------- /html/locals/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/35.gif -------------------------------------------------------------------------------- /html/locals/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/36.gif -------------------------------------------------------------------------------- /html/locals/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/37.gif -------------------------------------------------------------------------------- /html/locals/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/38.gif -------------------------------------------------------------------------------- /html/locals/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/39.gif -------------------------------------------------------------------------------- /html/locals/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/4.gif -------------------------------------------------------------------------------- /html/locals/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/40.gif -------------------------------------------------------------------------------- /html/locals/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/41.gif -------------------------------------------------------------------------------- /html/locals/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/42.gif -------------------------------------------------------------------------------- /html/locals/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/43.gif -------------------------------------------------------------------------------- /html/locals/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/44.gif -------------------------------------------------------------------------------- /html/locals/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/45.gif -------------------------------------------------------------------------------- /html/locals/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/46.gif -------------------------------------------------------------------------------- /html/locals/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/47.gif -------------------------------------------------------------------------------- /html/locals/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/48.gif -------------------------------------------------------------------------------- /html/locals/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/49.gif -------------------------------------------------------------------------------- /html/locals/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/5.gif -------------------------------------------------------------------------------- /html/locals/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/50.gif -------------------------------------------------------------------------------- /html/locals/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/51.gif -------------------------------------------------------------------------------- /html/locals/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/52.gif -------------------------------------------------------------------------------- /html/locals/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/53.gif -------------------------------------------------------------------------------- /html/locals/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/54.gif -------------------------------------------------------------------------------- /html/locals/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/55.gif -------------------------------------------------------------------------------- /html/locals/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/56.gif -------------------------------------------------------------------------------- /html/locals/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/57.gif -------------------------------------------------------------------------------- /html/locals/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/58.gif -------------------------------------------------------------------------------- /html/locals/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/59.gif -------------------------------------------------------------------------------- /html/locals/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/6.gif -------------------------------------------------------------------------------- /html/locals/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/60.gif -------------------------------------------------------------------------------- /html/locals/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/61.gif -------------------------------------------------------------------------------- /html/locals/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/62.gif -------------------------------------------------------------------------------- /html/locals/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/63.gif -------------------------------------------------------------------------------- /html/locals/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/64.gif -------------------------------------------------------------------------------- /html/locals/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/65.gif -------------------------------------------------------------------------------- /html/locals/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/66.gif -------------------------------------------------------------------------------- /html/locals/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/67.gif -------------------------------------------------------------------------------- /html/locals/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/68.gif -------------------------------------------------------------------------------- /html/locals/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/69.gif -------------------------------------------------------------------------------- /html/locals/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/7.gif -------------------------------------------------------------------------------- /html/locals/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/70.gif -------------------------------------------------------------------------------- /html/locals/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/71.gif -------------------------------------------------------------------------------- /html/locals/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/8.gif -------------------------------------------------------------------------------- /html/locals/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/images/face/9.gif -------------------------------------------------------------------------------- /html/locals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/index.html -------------------------------------------------------------------------------- /html/locals/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lang/en.js -------------------------------------------------------------------------------- /html/locals/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lang/ja.js -------------------------------------------------------------------------------- /html/locals/lang/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lang/zh-CN.js -------------------------------------------------------------------------------- /html/locals/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/carousel.js -------------------------------------------------------------------------------- /html/locals/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/code.js -------------------------------------------------------------------------------- /html/locals/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /html/locals/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/element.js -------------------------------------------------------------------------------- /html/locals/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/flow.js -------------------------------------------------------------------------------- /html/locals/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/form.js -------------------------------------------------------------------------------- /html/locals/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/jquery.js -------------------------------------------------------------------------------- /html/locals/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/laydate.js -------------------------------------------------------------------------------- /html/locals/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/layedit.js -------------------------------------------------------------------------------- /html/locals/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/layer.js -------------------------------------------------------------------------------- /html/locals/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/laypage.js -------------------------------------------------------------------------------- /html/locals/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/laytpl.js -------------------------------------------------------------------------------- /html/locals/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/mobile.js -------------------------------------------------------------------------------- /html/locals/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/rate.js -------------------------------------------------------------------------------- /html/locals/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/slider.js -------------------------------------------------------------------------------- /html/locals/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/table.js -------------------------------------------------------------------------------- /html/locals/lay/modules/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/transfer.js -------------------------------------------------------------------------------- /html/locals/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/tree.js -------------------------------------------------------------------------------- /html/locals/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/upload.js -------------------------------------------------------------------------------- /html/locals/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/lay/modules/util.js -------------------------------------------------------------------------------- /html/locals/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/layui.all.js -------------------------------------------------------------------------------- /html/locals/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/layui.js -------------------------------------------------------------------------------- /html/locals/other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/other.html -------------------------------------------------------------------------------- /html/locals/radix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/radix.html -------------------------------------------------------------------------------- /html/locals/settings/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/layui.css -------------------------------------------------------------------------------- /html/locals/settings/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/layui.mobile.css -------------------------------------------------------------------------------- /html/locals/settings/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/code.css -------------------------------------------------------------------------------- /html/locals/settings/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /html/locals/settings/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /html/locals/settings/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/font/iconfont.eot -------------------------------------------------------------------------------- /html/locals/settings/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/font/iconfont.svg -------------------------------------------------------------------------------- /html/locals/settings/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/font/iconfont.ttf -------------------------------------------------------------------------------- /html/locals/settings/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/font/iconfont.woff -------------------------------------------------------------------------------- /html/locals/settings/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/font/iconfont.woff2 -------------------------------------------------------------------------------- /html/locals/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/index.html -------------------------------------------------------------------------------- /html/locals/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/settings/settings.js -------------------------------------------------------------------------------- /html/locals/symmetric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/symmetric.html -------------------------------------------------------------------------------- /html/locals/tool/checker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/checker.html -------------------------------------------------------------------------------- /html/locals/tool/convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/convert.html -------------------------------------------------------------------------------- /html/locals/tool/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/layui.css -------------------------------------------------------------------------------- /html/locals/tool/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/layui.mobile.css -------------------------------------------------------------------------------- /html/locals/tool/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/code.css -------------------------------------------------------------------------------- /html/locals/tool/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /html/locals/tool/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /html/locals/tool/ecdh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/ecdh.html -------------------------------------------------------------------------------- /html/locals/tool/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/element.js -------------------------------------------------------------------------------- /html/locals/tool/encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/encoding.html -------------------------------------------------------------------------------- /html/locals/tool/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/encoding.js -------------------------------------------------------------------------------- /html/locals/tool/extraction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/extraction.html -------------------------------------------------------------------------------- /html/locals/tool/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/font/iconfont.eot -------------------------------------------------------------------------------- /html/locals/tool/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/font/iconfont.svg -------------------------------------------------------------------------------- /html/locals/tool/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/font/iconfont.ttf -------------------------------------------------------------------------------- /html/locals/tool/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/font/iconfont.woff -------------------------------------------------------------------------------- /html/locals/tool/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/font/iconfont.woff2 -------------------------------------------------------------------------------- /html/locals/tool/generate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/generate.html -------------------------------------------------------------------------------- /html/locals/tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/index.html -------------------------------------------------------------------------------- /html/locals/tool/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/parser.html -------------------------------------------------------------------------------- /html/locals/tool/passphrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/passphrase.html -------------------------------------------------------------------------------- /html/locals/tool/sign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/sign.html -------------------------------------------------------------------------------- /html/locals/tool/x509.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/locals/tool/x509.html -------------------------------------------------------------------------------- /html/padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/html/padding.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/asymmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/asymmetric.png -------------------------------------------------------------------------------- /screenshot/encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/encoding.png -------------------------------------------------------------------------------- /screenshot/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/hash.png -------------------------------------------------------------------------------- /screenshot/keypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/keypair.png -------------------------------------------------------------------------------- /screenshot/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/message.png -------------------------------------------------------------------------------- /screenshot/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/other.png -------------------------------------------------------------------------------- /screenshot/radix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/radix.png -------------------------------------------------------------------------------- /screenshot/started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/started.png -------------------------------------------------------------------------------- /screenshot/symmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/screenshot/symmetric.png -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/test/mocha.js -------------------------------------------------------------------------------- /tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/tray.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirname/CryptoMagician/HEAD/yarn.lock --------------------------------------------------------------------------------