@capgo/cli 7.69.0 → 7.70.0
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.
- package/README.md +2 -0
- package/dist/index.js +227 -227
- package/dist/package.json +1 -1
- package/dist/src/api/cryptoV2.d.ts +1 -0
- package/dist/src/bundle/decryptV2.d.ts +1 -0
- package/dist/src/bundle/encryptV2.d.ts +1 -0
- package/dist/src/sdk.d.ts +2 -0
- package/dist/src/sdk.js +203 -203
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -8,6 +8,7 @@ export declare function decryptSourceV2(source: Buffer, ivSessionKey: string, ke
|
|
|
8
8
|
export declare function encryptChecksumV2(checksum: string, key: string): string;
|
|
9
9
|
export declare function encryptChecksumV3(checksum: string, key: string): string;
|
|
10
10
|
export declare function decryptChecksumV2(checksum: string, key: string): string;
|
|
11
|
+
export declare function decryptChecksumV3(checksum: string, key: string): string;
|
|
11
12
|
export interface RSAKeys {
|
|
12
13
|
publicKey: string;
|
|
13
14
|
privateKey: string;
|
package/dist/src/sdk.d.ts
CHANGED
|
@@ -268,6 +268,7 @@ export interface EncryptBundleOptions {
|
|
|
268
268
|
keyPath?: string;
|
|
269
269
|
keyData?: string;
|
|
270
270
|
json?: boolean;
|
|
271
|
+
packageJson?: string;
|
|
271
272
|
}
|
|
272
273
|
export interface DecryptBundleOptions {
|
|
273
274
|
zipPath: string;
|
|
@@ -275,6 +276,7 @@ export interface DecryptBundleOptions {
|
|
|
275
276
|
keyPath?: string;
|
|
276
277
|
keyData?: string;
|
|
277
278
|
checksum?: string;
|
|
279
|
+
packageJson?: string;
|
|
278
280
|
}
|
|
279
281
|
export interface ZipBundleOptions {
|
|
280
282
|
appId: string;
|