Spudcrypt

Military-grade encryption.

Operation Successful

Developer API

Integrate Spudcrypt's powerful AES-GCM backend into your own applications using our REST endpoints.

POST /api/encrypt
# Request curl -X POST /api/encrypt \ -H "Content-Type: application/json" \ -d '{"text": "Secret message", "password": "hunter2"}' # Response { "result": "🥔SPUD~[salt]~[nonce]~[tag]~[cipher]🍟" }
POST /api/decrypt
# Request curl -X POST /api/decrypt \ -H "Content-Type: application/json" \ -d '{"encryptedString": "🥔SPUD~...", "password": "hunter2"}' # Response { "result": "Secret message" }