sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
8 lines (7 loc) • 339 B
TypeScript
export declare function encryptFile(filePath: any): Promise<string>;
export declare function decryptFile(filePath: any, targetFile: any, encryptionKey: any): Promise<void>;
export declare function encrypt(text: any): {
text: string;
encryptionKey: string;
};
export declare function decrypt(text: any, encryptionKey: any): string;