IdmCrypto: {
decrypt(script: string): Promise<any>;
decryptMap(map: { [key: string]: any }): Promise<{ [key: string]: any }>;
encrypt(value: any): Promise<any>;
encryptMap(map: { [key: string]: any }): Promise<{ [key: string]: any }>;
isEncrypted(value: any): boolean;
}
Type declaration
decrypt:function
decrypt(script: string): Promise<any> Returns Promise<any>
a promise resolving to the decrypted value
decryptMap:function
decryptMap(map: { [key: string]: any }): Promise<{ [key: string]: any }> Parameters
- map: { [key: string]: any }
Returns Promise<{ [key: string]: any }>
a promise resolving to a map of decrypted values
encrypt:function
encrypt(value: any): Promise<any> Returns Promise<any>
a promise resolving to the encrypted value
encryptMap:function
encryptMap(map: { [key: string]: any }): Promise<{ [key: string]: any }> Parameters
- map: { [key: string]: any }
Returns Promise<{ [key: string]: any }>
a promise resolving to a map of encrypted values
isEncrypted:function
isEncrypted(value: any): boolean Returns boolean
true if the value is encrypted, false otherwise
Decrypt a value