Not able to unmask masked variable in flow designerDescriptionNot able to unmask masked variable in flow designer. Prior to the Tokyo release: Use GlideEncrypter() API. Tokyo release or later: GlideEncrypter() API no longer works for this case. An alternative workaround that works on any release is to use an inline script or action with a script step to access and unmask the masked variable.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. In Tokyo and later releases the previously suggested workaround using the GlideEncrypter API no longer works. For example, the below only works prior to Tokyo: var encr = new GlideEncrypter(); var decrString = encr.decrypt(fd_data._1__get_catalog_variables.password);return decrString; WorkaroundPass the requested item to a script to access variable and then unmask it with the getDecryptedValue method. For example if "requested_item" is an input to the subflow and "masked_text" is the name of a catalog variable then this inline script will work:var masked = fd_data.subflow_inputs.requested_item.variables.masked_text;return masked.getDecryptedValue(); Related Problem: PRB1406020