About Security tools
Tools for checking and signing data: read what is inside a login token, calculate SHA-256, SHA-512 and MD5 hashes of text, create and verify HMAC signatures for webhooks, and check that a downloaded file matches the checksum its publisher lists.
Tokens, keys and files are handled with your browser’s built-in cryptography and never leave your device, which matters most for exactly this kind of sensitive data.
Frequently asked questions
Is it safe to paste real tokens and secret keys?
They are processed only in your browser and never sent anywhere. Still, treat live tokens like passwords and prefer test keys where you can.
Can I use SHA-256 or MD5 to store passwords?
No. They are far too fast, which makes stolen hashes easy to crack. Use a password hashing function such as Argon2id or bcrypt instead.