|
|
|
|
|
by delaaxe
2396 days ago
|
|
I do the same on a production app at work, but for a different reason. Storing confidential data in the hash assures my users that I (the developer) don’t have access to this data, since anything after the hash never gets sent to the server by the browser. It wouldn’t stop me from sending that information with a post request afterwards but the code is open source and it could be noticed in developer tools. |
|