@meebon/meebon-crypto 1.2.16 → 1.2.17

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,5 +1,5 @@
1
1
  import forge from 'node-forge';
2
- import { MeebonCryptoKeyPair, MeebonCryptoProps } from '../types/global';
2
+ import { MeebonCryptoGenerateKeyPair, MeebonCryptoProps } from '../types/global';
3
3
  export declare class MeebonCrypto {
4
4
  protected privateKeyPem: string;
5
5
  protected publicKeyPem: string;
@@ -29,9 +29,9 @@ export declare class MeebonCrypto {
29
29
  * Generates an RSA key pair with the specified key size.
30
30
  *
31
31
  * @param {number} [length=3072] - The length of the RSA key in bits (defaults to 3072).
32
- * @returns {MeebonCryptoKeyPair} An object containing the generated public and private keys in PEM format.
32
+ * @returns {MeebonCryptoGenerateKeyPair} An object containing the generated public and private keys in PEM format.
33
33
  */
34
- static generateKeyPair(length?: number): MeebonCryptoKeyPair;
34
+ static generateKeyPair(length?: number): MeebonCryptoGenerateKeyPair;
35
35
  /**
36
36
  * Encrypts data with a provided public key.
37
37
  * @param {string} data - The data to encrypt.
@@ -1 +1 @@
1
- {"version":3,"file":"MeebonCrypto.d.ts","sourceRoot":"","sources":["../lib/MeebonCrypto.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,YAAY,CAAC;AAC/B,OAAO,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEzE,qBAAa,YAAY;IACvB,SAAS,CAAC,aAAa,EAAE,MAAM,CAAC;IAChC,SAAS,CAAC,YAAY,EAAE,MAAM,CAAC;IAExB,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,UAAU,CAAC;IACrC,SAAS,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC;IAE1C,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAAgB,CAAC;IAEjD,OAAO;IASP;;;;OAIG;WACW,IAAI,CAAC,KAAK,EAAE,iBAAiB,GAAG,YAAY;IAI1D;;;;OAIG;IACI,OAAO,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAKzC;;;;OAIG;IACI,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM;IAK7C;;;;;OAKG;WACW,eAAe,CAAC,MAAM,GAAE,MAAa,GAAG,mBAAmB;IAQzE;;;;;;OAMG;WACW,WAAW,CACvB,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,MAAM,GAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAA6B,GAClD,MAAM;IAMT;;;;;;OAMG;WACW,WAAW,CACvB,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,EAClB,MAAM,GAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAA6B,GAClD,MAAM;CAKV"}
1
+ {"version":3,"file":"MeebonCrypto.d.ts","sourceRoot":"","sources":["../lib/MeebonCrypto.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,YAAY,CAAC;AAC/B,OAAO,EAAE,2BAA2B,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEjF,qBAAa,YAAY;IACvB,SAAS,CAAC,aAAa,EAAE,MAAM,CAAC;IAChC,SAAS,CAAC,YAAY,EAAE,MAAM,CAAC;IAExB,UAAU,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,UAAU,CAAC;IACrC,SAAS,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC;IAE1C,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAAgB,CAAC;IAEjD,OAAO;IASP;;;;OAIG;WACW,IAAI,CAAC,KAAK,EAAE,iBAAiB,GAAG,YAAY;IAI1D;;;;OAIG;IACI,OAAO,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM;IAKzC;;;;OAIG;IACI,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM;IAK7C;;;;;OAKG;WACW,eAAe,CAAC,MAAM,GAAE,MAAa,GAAG,2BAA2B;IAQjF;;;;;;OAMG;WACW,WAAW,CACvB,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,MAAM,GAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAA6B,GAClD,MAAM;IAMT;;;;;;OAMG;WACW,WAAW,CACvB,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,EAClB,MAAM,GAAE,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,gBAA6B,GAClD,MAAM;CAKV"}
package/dist/index.js CHANGED
@@ -43,7 +43,7 @@ var MeebonCrypto = class _MeebonCrypto {
43
43
  * Generates an RSA key pair with the specified key size.
44
44
  *
45
45
  * @param {number} [length=3072] - The length of the RSA key in bits (defaults to 3072).
46
- * @returns {MeebonCryptoKeyPair} An object containing the generated public and private keys in PEM format.
46
+ * @returns {MeebonCryptoGenerateKeyPair} An object containing the generated public and private keys in PEM format.
47
47
  */
48
48
  static generateKeyPair(length = 3072) {
49
49
  const keyPair = forge.pki.rsa.generateKeyPair({ bits: length, e: 65537 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meebon/meebon-crypto",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "description": "",
5
5
  "author": "kajalanS <103587022+kajalanS@users.noreply.github.com>",
6
6
  "homepage": "https://github.com/KsoftmHub/meebon-crypto?tab=readme-ov-file#getting-started",
package/types/global.d.ts CHANGED
@@ -11,3 +11,5 @@ export interface MeebonCryptoKeyPair {
11
11
  publicKey: string;
12
12
  forRequest?: boolean;
13
13
  }
14
+
15
+ export type MeebonCryptoGenerateKeyPair = Omit<MeebonCryptoKeyPair, "forRequest">;