Quickstart dark

Setup API keys

Once you log into your account, go to your API keys page and generate a key that can encrypt and decrypt secrets (Optional).

NOTE: You can create some keys that only encrypt or only decrypt for enhanced security.

Use the API

Send a JSON object via a POST request (described below) to http://zekreto.com/api/encrypt to protect your secret with encryption

When you're ready to decrypt your secret, send another POST request to http://zekreto.com/api/decrypt to get your secret back.

Sample Encryption

Request

{ "secret": "My Very Secret Message" }

Response

{ "secret": "9aa09167-cb57-4615-ac0e-4ac47da349d0kJRb5E7emca60LcdMpkUZ0VPM1c5QmZmT0NiSUFJZ1R2SmFLWCtTSWNHbE5UVW90MUpVaXRSOWk4NVFHSkhBUzdYTkxGTFFSYnhyQzVWTHY=" }

Sample Decryption

Request

{ "secret": "9aa09167-cb57-4615-ac0e-4ac47da349d0kJRb5E7emca60LcdMpkUZ0VPM1c5QmZmT0NiSUFJZ1R2SmFLWCtTSWNHbE5UVW90MUpVaXRSOWk4NVFHSkhBUzdYTkxGTFFSYnhyQzVWTHY=" }

Response

{ "secret": "My Very Secret Message" }