Skip to content

Commit bd1a02a

Browse files
committed
update
1 parent bb57f0d commit bd1a02a

File tree

14 files changed

+2285
-8
lines changed

14 files changed

+2285
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
logs/

extensions/ext.app.classical.rot-series/view.component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = {
5959
handler = 'ext.app.classical.rot47.encode'
6060
}
6161

62-
return hander;
62+
return handler;
6363
}
6464
},
6565
decodeHandler(options) {
@@ -76,7 +76,7 @@ module.exports = {
7676
handler = 'ext.app.classical.rot47.decode'
7777
}
7878

79-
return hander;
79+
return handler;
8080
}
8181
},
8282
}

extensions/ext.app.converter.base-series/view.component.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ module.exports = {
5858
`,
5959
methods: {
6060
encodeHandler(options) {
61+
console.log('encodeHandler');
6162
if (options && options.enctype) {
6263
let handler = 'ext.app.converter.base64.encode';
6364

@@ -81,9 +82,9 @@ module.exports = {
8182
}
8283
else if (options.enctype == 'base91') {
8384
handler = 'ext.app.converter.base91.encode'
84-
}
85+
}
8586

86-
return hander;
87+
return handler;
8788
}
8889
},
8990
decodeHandler(options) {
@@ -112,7 +113,7 @@ module.exports = {
112113
handler = 'ext.app.converter.base91.decode'
113114
}
114115

115-
return hander;
116+
return handler;
116117
}
117118
},
118119
}

extensions/ext.app.crypto.md-series/view.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module.exports = {
9292
options.length=320
9393
}
9494

95-
return hander;
95+
return handler;
9696
}
9797
}
9898
}

extensions/ext.app.crypto.sha-series/view.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ module.exports = {
7878
}
7979

8080

81-
return hander;
81+
return handler;
8282
}
8383
}
8484
}

main/index.js

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/index.js.LICENSE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */

renderer/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>CaptfEncoder 可扩展跨平台网络安全工具套件</title><link href=./static/css/app.2ebd6720f6cb7292e338eccf9429adbf.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/app.256c8d1ad7f80f0f5ad1.js></script></body></html>

renderer/static/css/app.2ebd6720f6cb7292e338eccf9429adbf.css

Lines changed: 358 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
454 KB
Binary file not shown.

0 commit comments

Comments
 (0)