Minimal, stateless HTTP encryption service.
No storage. No sessions. No private keys.
POST /api/v1/crypto/encrypt
SecureSync is a narrowly focused service that performs exactly one task: encrypt client-provided data using client-provided public keys.
The service does not persist data, does not manage keys, and does not provide decryption.
Client
|
| plaintext + public key
v
SecureSync API
|
| encrypted payload
v
Client storage / transport
SecureSync cannot decrypt its own output and retains no state between requests.
RSA-OAEP-SHA256/MGF1-SHA256
+ AES-128-GCM
POST /api/v1/crypto/encrypt
{
"dataBase64": "...",
"publicKeyBase64": "...",
"keyFormat": "RSA_DER"
}
{
"encryptedDataBase64": "...",
"ivBase64": "...",
"authTagBase64": "...",
"encryptedKeyBase64": "...",
"algorithm": "..."
}
SecureSync assumes a hostile network and untrusted clients. It minimizes blast radius by design.
SpiderBind.com © 2026