Not able to unmask masked variable in flow designerDescriptionNot able to unmask masked variable in flow designer. Please use GlideEncrypter() API.Steps to Reproduce 1. Login in to OOB instance2. Try to unmask any masked variable by adding below code in the action scriptvar password = fd_data._1__get_catalog_variables.u_password.getDecryptedValue();return password;3. getDecryptedValue() should allow to decrypt any encrypyed value in general but it does not work as expected in Flow Designer.4. The result of above function is undefined which is not the actual behavior.WorkaroundThere's an alternative API available: var encr = new GlideEncrypter(); var decrString = encr.decrypt(fd_data._1__get_catalog_variables.password);return decrString;Related Problem: PRB1406020