@kynesyslabs/demosdk 2.2.0 → 2.2.2
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export * as FHE from
|
|
2
|
-
export * as PQC from
|
|
3
|
-
export * as zK from
|
|
4
|
-
export { Cryptography } from
|
|
5
|
-
export { Hashing } from
|
|
6
|
-
export { unifiedCrypto as ucrypto } from
|
|
1
|
+
export * as FHE from "./FHE";
|
|
2
|
+
export * as PQC from "./PQC/enigma";
|
|
3
|
+
export * as zK from "./zK";
|
|
4
|
+
export { Cryptography } from "./Cryptography";
|
|
5
|
+
export { Hashing } from "./Hashing";
|
|
6
|
+
export { unifiedCrypto as ucrypto } from "./unifiedCrypto";
|
|
7
|
+
export { encryptedObject, SerializedEncryptedObject, signedObject, SerializedSignedObject, } from "./unifiedCrypto";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/encryption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/encryption/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,6CAA4B;AAC5B,oDAAmC;AACnC,2CAA0B;AAE1B,+CAA6C;AAApC,4GAAA,YAAY,OAAA;AACrB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA;AAChB,iDAA0D;AAAjD,wGAAA,aAAa,OAAW"}
|
package/build/utils/index.d.ts
CHANGED
package/build/utils/index.js
CHANGED
|
@@ -33,10 +33,13 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.dataManipulation = void 0;
|
|
36
|
+
exports.serializeUint8Array = exports.deserializeUint8Array = exports.dataManipulation = void 0;
|
|
37
37
|
exports.sleep = sleep;
|
|
38
38
|
async function sleep(time) {
|
|
39
39
|
return new Promise(resolve => setTimeout(resolve, time));
|
|
40
40
|
}
|
|
41
41
|
exports.dataManipulation = __importStar(require("./dataManipulation"));
|
|
42
|
+
var uint8Serialize_1 = require("./uint8Serialize");
|
|
43
|
+
Object.defineProperty(exports, "deserializeUint8Array", { enumerable: true, get: function () { return uint8Serialize_1.deserializeUint8Array; } });
|
|
44
|
+
Object.defineProperty(exports, "serializeUint8Array", { enumerable: true, get: function () { return uint8Serialize_1.serializeUint8Array; } });
|
|
42
45
|
//# sourceMappingURL=index.js.map
|
package/build/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sBAEC;AAFM,KAAK,UAAU,KAAK,CAAC,IAAY;IACpC,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAED,uEAAsD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sBAEC;AAFM,KAAK,UAAU,KAAK,CAAC,IAAY;IACpC,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAED,uEAAsD;AACtD,mDAA6E;AAApE,uHAAA,qBAAqB,OAAA;AAAE,qHAAA,mBAAmB,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kynesyslabs/demosdk",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "build/index.d.ts",
|
|
6
6
|
"author": "Kynesys Labs",
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
"near-api-js": "^4.0.4",
|
|
83
83
|
"node-forge": "^1.3.1",
|
|
84
84
|
"node-seal": "^5.1.3",
|
|
85
|
-
"node-webrtc": "^0.0.0",
|
|
86
85
|
"ntru": "^4.0.4",
|
|
87
86
|
"pqcrypto": "^1.0.1",
|
|
88
87
|
"protobufjs": "^7.4.0",
|