@ne1410s/crypto 0.2.44 → 0.2.46

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.
@@ -37,6 +37,8 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
37
37
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
38
38
  PERFORMANCE OF THIS SOFTWARE.
39
39
  ***************************************************************************** */
40
+ /* global Reflect, Promise */
41
+
40
42
 
41
43
  function __awaiter(thisArg, _arguments, P, generator) {
42
44
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -15,6 +15,8 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
15
15
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16
16
  PERFORMANCE OF THIS SOFTWARE.
17
17
  ***************************************************************************** */
18
+ /* global Reflect, Promise */
19
+
18
20
 
19
21
  function __awaiter(thisArg, _arguments, P, generator) {
20
22
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -18,6 +18,8 @@
18
18
  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
19
  PERFORMANCE OF THIS SOFTWARE.
20
20
  ***************************************************************************** */
21
+ /* global Reflect, Promise */
22
+
21
23
 
22
24
  function __awaiter(thisArg, _arguments, P, generator) {
23
25
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -394,6 +396,7 @@
394
396
  /*!
395
397
  Copyright (c) Peculiar Ventures, LLC
396
398
  */
399
+
397
400
  function utilFromBase(inputBuffer, inputBase) {
398
401
  let result = 0;
399
402
  if (inputBuffer.length === 1) {
@@ -565,6 +568,7 @@
565
568
  *
566
569
  */
567
570
 
571
+
568
572
  function assertBigInt() {
569
573
  if (typeof BigInt === "undefined") {
570
574
  throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ne1410s/crypto",
3
- "version": "0.2.44",
3
+ "version": "0.2.46",
4
4
  "description": "Lightweight ES5 script to provide crypto utilities",
5
5
  "main": "dist/ne14_crypto.cjs.min.js",
6
6
  "module": "dist/ne14_crypto.esm.min.js",
@@ -38,21 +38,21 @@
38
38
  },
39
39
  "homepage": "https://github.com/ne14-fed/core.crypto#readme",
40
40
  "devDependencies": {
41
- "@rollup/plugin-commonjs": "^24.0.1",
42
- "@rollup/plugin-node-resolve": "^15.0.2",
43
- "@types/node": "^18.15.11",
41
+ "@rollup/plugin-commonjs": "^25.0.3",
42
+ "@rollup/plugin-node-resolve": "^15.1.0",
43
+ "@types/node": "^20.4.2",
44
44
  "@types/pkijs": "^3.0.1",
45
45
  "chai": "^4.3.7",
46
46
  "mocha": "^10.2.0",
47
- "prettier": "^2.8.7",
48
- "rimraf": "^4.4.1",
49
- "rollup": "^3.20.2",
50
- "rollup-plugin-typescript2": "^0.34.1",
51
- "typescript": "^5.0.4"
47
+ "prettier": "^3.0.0",
48
+ "rimraf": "^5.0.1",
49
+ "rollup": "^3.26.3",
50
+ "rollup-plugin-typescript2": "^0.35.0",
51
+ "typescript": "^5.1.6"
52
52
  },
53
53
  "dependencies": {
54
- "@ne1410s/text": "^0.3.4",
54
+ "@ne1410s/text": "^0.3.5",
55
55
  "asn1js": "^3.0.5",
56
- "pkijs": "^3.0.14"
56
+ "pkijs": "^3.0.15"
57
57
  }
58
58
  }