EpochLock

/encrypt Endpoint

The /encrypt endpoint accepts plaintext input and returns an encrypted result using a time-derived encryption key. It supports encryption of short messages, sensitive strings, or login values.

📤 Request

POST https://api.epochlock.com/encrypt

🔐 Required Headers

📝 JSON Body Parameters

📥 Response

Returns JSON containing:

{
  "encrypted": "MDAwQkM1QzY...",
  "timestamp": "1713904356241",
  "entropy": 412189412
}

❌ Error Responses

📚 Next Step:

To decrypt encrypted values, proceed to the /decrypt documentation.