@novnc/novnc 1.4.0 → 1.5.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/README.md +0 -3
  2. package/lib/base64.js +5 -6
  3. package/lib/crypto/aes.js +481 -0
  4. package/lib/crypto/bigint.js +41 -0
  5. package/lib/crypto/crypto.js +109 -0
  6. package/lib/{des.js → crypto/des.js} +88 -15
  7. package/lib/crypto/dh.js +81 -0
  8. package/lib/crypto/md5.js +97 -0
  9. package/lib/crypto/rsa.js +312 -0
  10. package/lib/decoders/copyrect.js +9 -11
  11. package/lib/decoders/hextile.js +30 -34
  12. package/lib/decoders/jpeg.js +136 -110
  13. package/lib/decoders/raw.js +31 -39
  14. package/lib/decoders/rre.js +9 -11
  15. package/lib/decoders/tight.js +82 -21
  16. package/lib/decoders/tightpng.js +26 -22
  17. package/lib/decoders/zrle.js +18 -14
  18. package/lib/deflator.js +17 -14
  19. package/lib/display.js +31 -24
  20. package/lib/encodings.js +2 -2
  21. package/lib/inflator.js +17 -14
  22. package/lib/input/domkeytable.js +2 -3
  23. package/lib/input/fixedkeys.js +2 -3
  24. package/lib/input/gesturehandler.js +9 -11
  25. package/lib/input/keyboard.js +38 -26
  26. package/lib/input/keysym.js +2 -3
  27. package/lib/input/keysymdef.js +2 -3
  28. package/lib/input/util.js +5 -5
  29. package/lib/input/vkeys.js +2 -3
  30. package/lib/input/xtscancodes.js +2 -3
  31. package/lib/ra2.js +196 -666
  32. package/lib/rfb.js +340 -439
  33. package/lib/util/browser.js +8 -11
  34. package/lib/util/cursor.js +16 -12
  35. package/lib/util/eventtarget.js +9 -11
  36. package/lib/util/logging.js +4 -9
  37. package/lib/vendor/pako/lib/utils/common.js +3 -6
  38. package/lib/vendor/pako/lib/zlib/constants.js +2 -3
  39. package/lib/vendor/pako/lib/zlib/deflate.js +25 -59
  40. package/lib/vendor/pako/lib/zlib/inffast.js +0 -2
  41. package/lib/vendor/pako/lib/zlib/inflate.js +18 -42
  42. package/lib/vendor/pako/lib/zlib/inftrees.js +3 -5
  43. package/lib/vendor/pako/lib/zlib/messages.js +2 -3
  44. package/lib/vendor/pako/lib/zlib/trees.js +3 -10
  45. package/lib/websock.js +107 -96
  46. package/package.json +3 -10
  47. package/core/base64.js +0 -104
  48. package/core/decoders/copyrect.js +0 -27
  49. package/core/decoders/hextile.js +0 -191
  50. package/core/decoders/jpeg.js +0 -141
  51. package/core/decoders/raw.js +0 -66
  52. package/core/decoders/rre.js +0 -44
  53. package/core/decoders/tight.js +0 -331
  54. package/core/decoders/tightpng.js +0 -27
  55. package/core/decoders/zrle.js +0 -185
  56. package/core/deflator.js +0 -85
  57. package/core/des.js +0 -266
  58. package/core/display.js +0 -525
  59. package/core/encodings.js +0 -48
  60. package/core/inflator.js +0 -66
  61. package/core/input/domkeytable.js +0 -311
  62. package/core/input/fixedkeys.js +0 -129
  63. package/core/input/gesturehandler.js +0 -567
  64. package/core/input/keyboard.js +0 -283
  65. package/core/input/keysym.js +0 -616
  66. package/core/input/keysymdef.js +0 -688
  67. package/core/input/util.js +0 -191
  68. package/core/input/vkeys.js +0 -116
  69. package/core/input/xtscancodes.js +0 -173
  70. package/core/ra2.js +0 -567
  71. package/core/rfb.js +0 -3373
  72. package/core/util/browser.js +0 -152
  73. package/core/util/cursor.js +0 -247
  74. package/core/util/element.js +0 -32
  75. package/core/util/events.js +0 -138
  76. package/core/util/eventtarget.js +0 -35
  77. package/core/util/int.js +0 -15
  78. package/core/util/logging.js +0 -56
  79. package/core/util/md5.js +0 -79
  80. package/core/util/strings.js +0 -28
  81. package/core/websock.js +0 -353
  82. package/lib/util/md5.js +0 -77
  83. package/vendor/pako/LICENSE +0 -21
  84. package/vendor/pako/README.md +0 -6
  85. package/vendor/pako/lib/utils/common.js +0 -45
  86. package/vendor/pako/lib/zlib/adler32.js +0 -27
  87. package/vendor/pako/lib/zlib/constants.js +0 -47
  88. package/vendor/pako/lib/zlib/crc32.js +0 -36
  89. package/vendor/pako/lib/zlib/deflate.js +0 -1846
  90. package/vendor/pako/lib/zlib/gzheader.js +0 -35
  91. package/vendor/pako/lib/zlib/inffast.js +0 -324
  92. package/vendor/pako/lib/zlib/inflate.js +0 -1527
  93. package/vendor/pako/lib/zlib/inftrees.js +0 -322
  94. package/vendor/pako/lib/zlib/messages.js +0 -11
  95. package/vendor/pako/lib/zlib/trees.js +0 -1195
  96. package/vendor/pako/lib/zlib/zstream.js +0 -24
package/README.md CHANGED
@@ -32,8 +32,6 @@ for a more complete list with additional info and links.
32
32
  ### News/help/contact
33
33
 
34
34
  The project website is found at [novnc.com](http://novnc.com).
35
- Notable commits, announcements and news are posted to
36
- [@noVNC](http://www.twitter.com/noVNC).
37
35
 
38
36
  If you are a noVNC developer/integrator/user (or want to be) please join the
39
37
  [noVNC discussion group](https://groups.google.com/forum/?fromgroups#!forum/novnc).
@@ -59,7 +57,6 @@ profits such as:
59
57
  [Electronic Frontier Foundation](https://www.eff.org/),
60
58
  [Against Malaria Foundation](http://www.againstmalaria.com/),
61
59
  [Nothing But Nets](http://www.nothingbutnets.net/), etc.
62
- Please tweet [@noVNC](http://www.twitter.com/noVNC) if you do.
63
60
 
64
61
 
65
62
  ### Features
package/lib/base64.js CHANGED
@@ -1,18 +1,18 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
7
  exports["default"] = void 0;
8
8
  var Log = _interopRequireWildcard(require("./util/logging.js"));
9
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
10
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
9
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
10
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
11
11
  /* This Source Code Form is subject to the terms of the Mozilla Public
12
12
  * License, v. 2.0. If a copy of the MPL was not distributed with this
13
13
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
14
14
  // From: http://hg.mozilla.org/mozilla-central/raw-file/ec10630b1a54/js/src/devtools/jint/sunspider/string-base64.js
15
- var _default = {
15
+ var _default = exports["default"] = {
16
16
  /* Convert data (an array of integers) to a Base64 string. */
17
17
  toBase64Table: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='.split(''),
18
18
  base64Pad: '=',
@@ -97,5 +97,4 @@ var _default = {
97
97
  return result;
98
98
  }
99
99
  };
100
- /* End of Base64 namespace */
101
- exports["default"] = _default;
100
+ /* End of Base64 namespace */
@@ -0,0 +1,481 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.AESECBCipher = exports.AESEAXCipher = void 0;
7
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
8
+ function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, "catch": function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
9
+ function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
10
+ function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
11
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
12
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
13
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
14
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
15
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
16
+ var AESECBCipher = exports.AESECBCipher = /*#__PURE__*/function () {
17
+ function AESECBCipher() {
18
+ _classCallCheck(this, AESECBCipher);
19
+ this._key = null;
20
+ }
21
+ return _createClass(AESECBCipher, [{
22
+ key: "algorithm",
23
+ get: function get() {
24
+ return {
25
+ name: "AES-ECB"
26
+ };
27
+ }
28
+ }, {
29
+ key: "_importKey",
30
+ value: function () {
31
+ var _importKey2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(key, extractable, keyUsages) {
32
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
33
+ while (1) switch (_context.prev = _context.next) {
34
+ case 0:
35
+ _context.next = 2;
36
+ return window.crypto.subtle.importKey("raw", key, {
37
+ name: "AES-CBC"
38
+ }, extractable, keyUsages);
39
+ case 2:
40
+ this._key = _context.sent;
41
+ case 3:
42
+ case "end":
43
+ return _context.stop();
44
+ }
45
+ }, _callee, this);
46
+ }));
47
+ function _importKey(_x, _x2, _x3) {
48
+ return _importKey2.apply(this, arguments);
49
+ }
50
+ return _importKey;
51
+ }()
52
+ }, {
53
+ key: "encrypt",
54
+ value: function () {
55
+ var _encrypt = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(_algorithm, plaintext) {
56
+ var x, n, i, y;
57
+ return _regeneratorRuntime().wrap(function _callee2$(_context2) {
58
+ while (1) switch (_context2.prev = _context2.next) {
59
+ case 0:
60
+ x = new Uint8Array(plaintext);
61
+ if (!(x.length % 16 !== 0 || this._key === null)) {
62
+ _context2.next = 3;
63
+ break;
64
+ }
65
+ return _context2.abrupt("return", null);
66
+ case 3:
67
+ n = x.length / 16;
68
+ i = 0;
69
+ case 5:
70
+ if (!(i < n)) {
71
+ _context2.next = 15;
72
+ break;
73
+ }
74
+ _context2.t0 = Uint8Array;
75
+ _context2.next = 9;
76
+ return window.crypto.subtle.encrypt({
77
+ name: "AES-CBC",
78
+ iv: new Uint8Array(16)
79
+ }, this._key, x.slice(i * 16, i * 16 + 16));
80
+ case 9:
81
+ _context2.t1 = _context2.sent;
82
+ y = new _context2.t0(_context2.t1).slice(0, 16);
83
+ x.set(y, i * 16);
84
+ case 12:
85
+ i++;
86
+ _context2.next = 5;
87
+ break;
88
+ case 15:
89
+ return _context2.abrupt("return", x);
90
+ case 16:
91
+ case "end":
92
+ return _context2.stop();
93
+ }
94
+ }, _callee2, this);
95
+ }));
96
+ function encrypt(_x4, _x5) {
97
+ return _encrypt.apply(this, arguments);
98
+ }
99
+ return encrypt;
100
+ }()
101
+ }], [{
102
+ key: "importKey",
103
+ value: function () {
104
+ var _importKey3 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(key, _algorithm, extractable, keyUsages) {
105
+ var cipher;
106
+ return _regeneratorRuntime().wrap(function _callee3$(_context3) {
107
+ while (1) switch (_context3.prev = _context3.next) {
108
+ case 0:
109
+ cipher = new AESECBCipher();
110
+ _context3.next = 3;
111
+ return cipher._importKey(key, extractable, keyUsages);
112
+ case 3:
113
+ return _context3.abrupt("return", cipher);
114
+ case 4:
115
+ case "end":
116
+ return _context3.stop();
117
+ }
118
+ }, _callee3);
119
+ }));
120
+ function importKey(_x6, _x7, _x8, _x9) {
121
+ return _importKey3.apply(this, arguments);
122
+ }
123
+ return importKey;
124
+ }()
125
+ }]);
126
+ }();
127
+ var AESEAXCipher = exports.AESEAXCipher = /*#__PURE__*/function () {
128
+ function AESEAXCipher() {
129
+ _classCallCheck(this, AESEAXCipher);
130
+ this._rawKey = null;
131
+ this._ctrKey = null;
132
+ this._cbcKey = null;
133
+ this._zeroBlock = new Uint8Array(16);
134
+ this._prefixBlock0 = this._zeroBlock;
135
+ this._prefixBlock1 = new Uint8Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
136
+ this._prefixBlock2 = new Uint8Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]);
137
+ }
138
+ return _createClass(AESEAXCipher, [{
139
+ key: "algorithm",
140
+ get: function get() {
141
+ return {
142
+ name: "AES-EAX"
143
+ };
144
+ }
145
+ }, {
146
+ key: "_encryptBlock",
147
+ value: function () {
148
+ var _encryptBlock2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(block) {
149
+ var encrypted;
150
+ return _regeneratorRuntime().wrap(function _callee4$(_context4) {
151
+ while (1) switch (_context4.prev = _context4.next) {
152
+ case 0:
153
+ _context4.next = 2;
154
+ return window.crypto.subtle.encrypt({
155
+ name: "AES-CBC",
156
+ iv: this._zeroBlock
157
+ }, this._cbcKey, block);
158
+ case 2:
159
+ encrypted = _context4.sent;
160
+ return _context4.abrupt("return", new Uint8Array(encrypted).slice(0, 16));
161
+ case 4:
162
+ case "end":
163
+ return _context4.stop();
164
+ }
165
+ }, _callee4, this);
166
+ }));
167
+ function _encryptBlock(_x10) {
168
+ return _encryptBlock2.apply(this, arguments);
169
+ }
170
+ return _encryptBlock;
171
+ }()
172
+ }, {
173
+ key: "_initCMAC",
174
+ value: function () {
175
+ var _initCMAC2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5() {
176
+ var k1, k2, v, i, lut;
177
+ return _regeneratorRuntime().wrap(function _callee5$(_context5) {
178
+ while (1) switch (_context5.prev = _context5.next) {
179
+ case 0:
180
+ _context5.next = 2;
181
+ return this._encryptBlock(this._zeroBlock);
182
+ case 2:
183
+ k1 = _context5.sent;
184
+ k2 = new Uint8Array(16);
185
+ v = k1[0] >>> 6;
186
+ for (i = 0; i < 15; i++) {
187
+ k2[i] = k1[i + 1] >> 6 | k1[i] << 2;
188
+ k1[i] = k1[i + 1] >> 7 | k1[i] << 1;
189
+ }
190
+ lut = [0x0, 0x87, 0x0e, 0x89];
191
+ k2[14] ^= v >>> 1;
192
+ k2[15] = k1[15] << 2 ^ lut[v];
193
+ k1[15] = k1[15] << 1 ^ lut[v >> 1];
194
+ this._k1 = k1;
195
+ this._k2 = k2;
196
+ case 12:
197
+ case "end":
198
+ return _context5.stop();
199
+ }
200
+ }, _callee5, this);
201
+ }));
202
+ function _initCMAC() {
203
+ return _initCMAC2.apply(this, arguments);
204
+ }
205
+ return _initCMAC;
206
+ }()
207
+ }, {
208
+ key: "_encryptCTR",
209
+ value: function () {
210
+ var _encryptCTR2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee6(data, counter) {
211
+ var encrypted;
212
+ return _regeneratorRuntime().wrap(function _callee6$(_context6) {
213
+ while (1) switch (_context6.prev = _context6.next) {
214
+ case 0:
215
+ _context6.next = 2;
216
+ return window.crypto.subtle.encrypt({
217
+ name: "AES-CTR",
218
+ counter: counter,
219
+ length: 128
220
+ }, this._ctrKey, data);
221
+ case 2:
222
+ encrypted = _context6.sent;
223
+ return _context6.abrupt("return", new Uint8Array(encrypted));
224
+ case 4:
225
+ case "end":
226
+ return _context6.stop();
227
+ }
228
+ }, _callee6, this);
229
+ }));
230
+ function _encryptCTR(_x11, _x12) {
231
+ return _encryptCTR2.apply(this, arguments);
232
+ }
233
+ return _encryptCTR;
234
+ }()
235
+ }, {
236
+ key: "_decryptCTR",
237
+ value: function () {
238
+ var _decryptCTR2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee7(data, counter) {
239
+ var decrypted;
240
+ return _regeneratorRuntime().wrap(function _callee7$(_context7) {
241
+ while (1) switch (_context7.prev = _context7.next) {
242
+ case 0:
243
+ _context7.next = 2;
244
+ return window.crypto.subtle.decrypt({
245
+ name: "AES-CTR",
246
+ counter: counter,
247
+ length: 128
248
+ }, this._ctrKey, data);
249
+ case 2:
250
+ decrypted = _context7.sent;
251
+ return _context7.abrupt("return", new Uint8Array(decrypted));
252
+ case 4:
253
+ case "end":
254
+ return _context7.stop();
255
+ }
256
+ }, _callee7, this);
257
+ }));
258
+ function _decryptCTR(_x13, _x14) {
259
+ return _decryptCTR2.apply(this, arguments);
260
+ }
261
+ return _decryptCTR;
262
+ }()
263
+ }, {
264
+ key: "_computeCMAC",
265
+ value: function () {
266
+ var _computeCMAC2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8(data, prefixBlock) {
267
+ var n, m, r, cbcData, i, _i, cbcEncrypted, mac;
268
+ return _regeneratorRuntime().wrap(function _callee8$(_context8) {
269
+ while (1) switch (_context8.prev = _context8.next) {
270
+ case 0:
271
+ if (!(prefixBlock.length !== 16)) {
272
+ _context8.next = 2;
273
+ break;
274
+ }
275
+ return _context8.abrupt("return", null);
276
+ case 2:
277
+ n = Math.floor(data.length / 16);
278
+ m = Math.ceil(data.length / 16);
279
+ r = data.length - n * 16;
280
+ cbcData = new Uint8Array((m + 1) * 16);
281
+ cbcData.set(prefixBlock);
282
+ cbcData.set(data, 16);
283
+ if (r === 0) {
284
+ for (i = 0; i < 16; i++) {
285
+ cbcData[n * 16 + i] ^= this._k1[i];
286
+ }
287
+ } else {
288
+ cbcData[(n + 1) * 16 + r] = 0x80;
289
+ for (_i = 0; _i < 16; _i++) {
290
+ cbcData[(n + 1) * 16 + _i] ^= this._k2[_i];
291
+ }
292
+ }
293
+ _context8.next = 11;
294
+ return window.crypto.subtle.encrypt({
295
+ name: "AES-CBC",
296
+ iv: this._zeroBlock
297
+ }, this._cbcKey, cbcData);
298
+ case 11:
299
+ cbcEncrypted = _context8.sent;
300
+ cbcEncrypted = new Uint8Array(cbcEncrypted);
301
+ mac = cbcEncrypted.slice(cbcEncrypted.length - 32, cbcEncrypted.length - 16);
302
+ return _context8.abrupt("return", mac);
303
+ case 15:
304
+ case "end":
305
+ return _context8.stop();
306
+ }
307
+ }, _callee8, this);
308
+ }));
309
+ function _computeCMAC(_x15, _x16) {
310
+ return _computeCMAC2.apply(this, arguments);
311
+ }
312
+ return _computeCMAC;
313
+ }()
314
+ }, {
315
+ key: "_importKey",
316
+ value: function () {
317
+ var _importKey4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee9(key) {
318
+ return _regeneratorRuntime().wrap(function _callee9$(_context9) {
319
+ while (1) switch (_context9.prev = _context9.next) {
320
+ case 0:
321
+ this._rawKey = key;
322
+ _context9.next = 3;
323
+ return window.crypto.subtle.importKey("raw", key, {
324
+ name: "AES-CTR"
325
+ }, false, ["encrypt", "decrypt"]);
326
+ case 3:
327
+ this._ctrKey = _context9.sent;
328
+ _context9.next = 6;
329
+ return window.crypto.subtle.importKey("raw", key, {
330
+ name: "AES-CBC"
331
+ }, false, ["encrypt"]);
332
+ case 6:
333
+ this._cbcKey = _context9.sent;
334
+ _context9.next = 9;
335
+ return this._initCMAC();
336
+ case 9:
337
+ case "end":
338
+ return _context9.stop();
339
+ }
340
+ }, _callee9, this);
341
+ }));
342
+ function _importKey(_x17) {
343
+ return _importKey4.apply(this, arguments);
344
+ }
345
+ return _importKey;
346
+ }()
347
+ }, {
348
+ key: "encrypt",
349
+ value: function () {
350
+ var _encrypt2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee10(algorithm, message) {
351
+ var ad, nonce, nCMAC, encrypted, adCMAC, mac, i, res;
352
+ return _regeneratorRuntime().wrap(function _callee10$(_context10) {
353
+ while (1) switch (_context10.prev = _context10.next) {
354
+ case 0:
355
+ ad = algorithm.additionalData;
356
+ nonce = algorithm.iv;
357
+ _context10.next = 4;
358
+ return this._computeCMAC(nonce, this._prefixBlock0);
359
+ case 4:
360
+ nCMAC = _context10.sent;
361
+ _context10.next = 7;
362
+ return this._encryptCTR(message, nCMAC);
363
+ case 7:
364
+ encrypted = _context10.sent;
365
+ _context10.next = 10;
366
+ return this._computeCMAC(ad, this._prefixBlock1);
367
+ case 10:
368
+ adCMAC = _context10.sent;
369
+ _context10.next = 13;
370
+ return this._computeCMAC(encrypted, this._prefixBlock2);
371
+ case 13:
372
+ mac = _context10.sent;
373
+ for (i = 0; i < 16; i++) {
374
+ mac[i] ^= nCMAC[i] ^ adCMAC[i];
375
+ }
376
+ res = new Uint8Array(16 + encrypted.length);
377
+ res.set(encrypted);
378
+ res.set(mac, encrypted.length);
379
+ return _context10.abrupt("return", res);
380
+ case 19:
381
+ case "end":
382
+ return _context10.stop();
383
+ }
384
+ }, _callee10, this);
385
+ }));
386
+ function encrypt(_x18, _x19) {
387
+ return _encrypt2.apply(this, arguments);
388
+ }
389
+ return encrypt;
390
+ }()
391
+ }, {
392
+ key: "decrypt",
393
+ value: function () {
394
+ var _decrypt = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee11(algorithm, data) {
395
+ var encrypted, ad, nonce, mac, nCMAC, adCMAC, computedMac, i, _i2, res;
396
+ return _regeneratorRuntime().wrap(function _callee11$(_context11) {
397
+ while (1) switch (_context11.prev = _context11.next) {
398
+ case 0:
399
+ encrypted = data.slice(0, data.length - 16);
400
+ ad = algorithm.additionalData;
401
+ nonce = algorithm.iv;
402
+ mac = data.slice(data.length - 16);
403
+ _context11.next = 6;
404
+ return this._computeCMAC(nonce, this._prefixBlock0);
405
+ case 6:
406
+ nCMAC = _context11.sent;
407
+ _context11.next = 9;
408
+ return this._computeCMAC(ad, this._prefixBlock1);
409
+ case 9:
410
+ adCMAC = _context11.sent;
411
+ _context11.next = 12;
412
+ return this._computeCMAC(encrypted, this._prefixBlock2);
413
+ case 12:
414
+ computedMac = _context11.sent;
415
+ for (i = 0; i < 16; i++) {
416
+ computedMac[i] ^= nCMAC[i] ^ adCMAC[i];
417
+ }
418
+ if (!(computedMac.length !== mac.length)) {
419
+ _context11.next = 16;
420
+ break;
421
+ }
422
+ return _context11.abrupt("return", null);
423
+ case 16:
424
+ _i2 = 0;
425
+ case 17:
426
+ if (!(_i2 < mac.length)) {
427
+ _context11.next = 23;
428
+ break;
429
+ }
430
+ if (!(computedMac[_i2] !== mac[_i2])) {
431
+ _context11.next = 20;
432
+ break;
433
+ }
434
+ return _context11.abrupt("return", null);
435
+ case 20:
436
+ _i2++;
437
+ _context11.next = 17;
438
+ break;
439
+ case 23:
440
+ _context11.next = 25;
441
+ return this._decryptCTR(encrypted, nCMAC);
442
+ case 25:
443
+ res = _context11.sent;
444
+ return _context11.abrupt("return", res);
445
+ case 27:
446
+ case "end":
447
+ return _context11.stop();
448
+ }
449
+ }, _callee11, this);
450
+ }));
451
+ function decrypt(_x20, _x21) {
452
+ return _decrypt.apply(this, arguments);
453
+ }
454
+ return decrypt;
455
+ }()
456
+ }], [{
457
+ key: "importKey",
458
+ value: function () {
459
+ var _importKey5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee12(key, _algorithm, _extractable, _keyUsages) {
460
+ var cipher;
461
+ return _regeneratorRuntime().wrap(function _callee12$(_context12) {
462
+ while (1) switch (_context12.prev = _context12.next) {
463
+ case 0:
464
+ cipher = new AESEAXCipher();
465
+ _context12.next = 3;
466
+ return cipher._importKey(key);
467
+ case 3:
468
+ return _context12.abrupt("return", cipher);
469
+ case 4:
470
+ case "end":
471
+ return _context12.stop();
472
+ }
473
+ }, _callee12);
474
+ }));
475
+ function importKey(_x22, _x23, _x24, _x25) {
476
+ return _importKey5.apply(this, arguments);
477
+ }
478
+ return importKey;
479
+ }()
480
+ }]);
481
+ }();
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.bigIntToU8Array = bigIntToU8Array;
7
+ exports.modPow = modPow;
8
+ exports.u8ArrayToBigInt = u8ArrayToBigInt;
9
+ function modPow(b, e, m) {
10
+ var r = 1n;
11
+ b = b % m;
12
+ while (e > 0n) {
13
+ if ((e & 1n) === 1n) {
14
+ r = r * b % m;
15
+ }
16
+ e = e >> 1n;
17
+ b = b * b % m;
18
+ }
19
+ return r;
20
+ }
21
+ function bigIntToU8Array(bigint) {
22
+ var padLength = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
23
+ var hex = bigint.toString(16);
24
+ if (padLength === 0) {
25
+ padLength = Math.ceil(hex.length / 2);
26
+ }
27
+ hex = hex.padStart(padLength * 2, '0');
28
+ var length = hex.length / 2;
29
+ var arr = new Uint8Array(length);
30
+ for (var i = 0; i < length; i++) {
31
+ arr[i] = parseInt(hex.slice(i * 2, i * 2 + 2), 16);
32
+ }
33
+ return arr;
34
+ }
35
+ function u8ArrayToBigInt(arr) {
36
+ var hex = '0x';
37
+ for (var i = 0; i < arr.length; i++) {
38
+ hex += arr[i].toString(16).padStart(2, '0');
39
+ }
40
+ return BigInt(hex);
41
+ }