The Secret class exists to mask sensitive strings. This helps avoid accidentally revealing data in backtraces, which are often written to logs (including remote logging services) or - if an environment is configured for development - revealed to the end-user. The masked value is not encrypted; it's just XORed with a randomly-generated key that is discarded at the end of the request. That means tha

