@kynesyslabs/demosdk 2.2.1 → 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 './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';
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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA4B;AAC5B,oDAAmC;AACnC,2CAA0B;AAE1B,+CAA6C;AAApC,4GAAA,YAAY,OAAA;AACrB,qCAAmC;AAA1B,kGAAA,OAAO,OAAA;AAChB,iDAA0D;AAAjD,wGAAA,aAAa,OAAW"}
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"}
@@ -1,2 +1,3 @@
1
1
  export declare function sleep(time: number): Promise<unknown>;
2
2
  export * as dataManipulation from "./dataManipulation";
3
+ export { deserializeUint8Array, serializeUint8Array } from "./uint8Serialize";
@@ -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
@@ -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.1",
3
+ "version": "2.2.2",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "author": "Kynesys Labs",