Skip to main content

Documentation

How to login

To login, go to the login page.

How to decrypt data

To decrypt data, you need to use the decryption key provided on your profile page.

There you'll find the JWT Encryption key which is used to decrypt the data.

First, decode the JWT token and use the key to validate its signature. JWT debugger

In the decoded data, you'll see "data", "iv" and "iat" values.

The "data" value is the encrypted data using aes-256-cbc encryption.

You can test OpenSSL decryption using the following command:

echo -n "[INSERT_DATA_HERE]" | base64 -d | openssl enc -aes-256-cbc -d -K [INSERT_YOUR_KEY] -iv [INSERT_IV_HERE]